mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-07 09:01:18 +08:00
11 lines
240 B
Go
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
|
|
}
|