2024-12-19 15:03:36 +08:00

7 lines
87 B
Go

package cache
import "errors"
var (
ErrorKeyNotFound = errors.New("key not found")
)