mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-29 23:43:43 -04:00
11 lines
170 B
Go
11 lines
170 B
Go
package bencode
|
|
|
|
import (
|
|
"reflect"
|
|
)
|
|
|
|
var (
|
|
marshalerType = reflect.TypeOf((*Marshaler)(nil)).Elem()
|
|
unmarshalerType = reflect.TypeOf((*Unmarshaler)(nil)).Elem()
|
|
)
|