go-peer/pkg/encoding/errors.go
2024-04-05 03:18:16 +07:00

12 lines
147 B
Go

package encoding
import "errors"
const (
errPrefix = "pkg/encoding = "
)
var (
ErrDeserialize = errors.New(errPrefix + "deserialize bytes")
)