Files
x_admin/server/util/aj-captcha-go/service/captcha_cache_interface.go
2024-02-25 22:01:41 +08:00

11 lines
232 B
Go

package service
type CaptchaCacheInterface interface {
Get(key string) string
Set(key string, val string, expiresInSeconds int)
Delete(key string)
Exists(key string) bool
GetType() string
Increment(key string, val int) int
}