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