8 lines
88 B
Go
Raw Normal View History

2024-07-11 16:37:26 +08:00
package cache
import "errors"
var (
ErrorKeyNotFound = errors.New("key not found")
)