package protocol
import "errors"
var (
ErrNotFound = errors.New("not found")
ErrUnimplemented = errors.New("unimplemented")
)