Files
x_admin/server/util/aj-captcha-go/captcha_service/cache_captcha_interface.go
2025-09-18 18:41:38 +08:00

11 lines
240 B
Go

package captcha_service
type CacheCaptchaInterface 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
}