9 lines
232 B
Go
9 lines
232 B
Go
package store
|
|
|
|
import "errors"
|
|
|
|
var ErrKeyNotFound = errors.New("Key not found")
|
|
var ErrKeyAlreadyExists = errors.New("Key already exists")
|
|
var ErrKeyExpired = errors.New("Key expired")
|
|
var ErrKeyBackend = errors.New("Key backend")
|