mirror of
https://github.com/number571/go-peer.git
synced 2026-09-14 11:05:42 +05:00
8 lines
93 B
Go
8 lines
93 B
Go
package encoding
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrDeserialize = errors.New("deserialize bytes")
|
|
)
|