mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-30 03:02:00 +08:00
11 lines
232 B
Go
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
|
|
}
|