7 lines
87 B
Go
Raw Normal View History

2024-12-19 15:03:36 +08:00
package cache
import "errors"
var (
ErrorKeyNotFound = errors.New("key not found")
)