9 lines
135 B
Go
9 lines
135 B
Go
|
package protocol
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrNotFound = errors.New("not found")
|
||
|
ErrUnimplemented = errors.New("unimplemented")
|
||
|
)
|