go-emlid/reach/client/protocol/error.go

9 lines
135 B
Go
Raw Normal View History

2024-07-30 14:28:39 +02:00
package protocol
import "errors"
var (
ErrNotFound = errors.New("not found")
ErrUnimplemented = errors.New("unimplemented")
)