go-cache/errors.go

8 lines
88 B
Go

package gocache
import "errors"
var (
ErrKeyNotFound = errors.New("Key not found")
)