This commit is contained in:
loveuer
2026-01-28 10:28:13 +08:00
parent 507a67e455
commit 3ee0c9c098
29 changed files with 2852 additions and 0 deletions

11
database/cache/errors.go vendored Normal file
View File

@@ -0,0 +1,11 @@
package cache
import (
"errors"
)
var (
ErrKeyNotFound = errors.New("key not found")
ErrKeyExists = errors.New("key already exists")
ErrInvalidType = errors.New("invalid type")
)