10 lines
205 B
Go
10 lines
205 B
Go
|
package datastore
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrNotFound = errors.New("not found")
|
||
|
ErrAlreadyExist = errors.New("already exist")
|
||
|
ErrUnexpectedRevision = errors.New("unexpected revision")
|
||
|
)
|