uauth/pkg/cache/error.go

8 lines
88 B
Go
Raw Permalink Normal View History

2024-10-23 17:46:15 +08:00
package cache
import "errors"
var (
ErrorKeyNotFound = errors.New("key not found")
)