mirror of
https://github.com/number571/go-peer.git
synced 2026-09-13 18:45:44 +05:00
12 lines
147 B
Go
12 lines
147 B
Go
package encoding
|
|
|
|
import "errors"
|
|
|
|
const (
|
|
errPrefix = "pkg/encoding = "
|
|
)
|
|
|
|
var (
|
|
ErrDeserialize = errors.New(errPrefix + "deserialize bytes")
|
|
)
|