mirror of
https://github.com/sablierapp/sablier.git
synced 2026-01-01 18:47:23 +01:00
8 lines
86 B
Go
8 lines
86 B
Go
package store
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var ErrKeyNotFound = errors.New("key not found")
|