goploy/internal/cache/captcha.go
2023-08-16 18:44:44 +08:00

11 lines
197 B
Go

package cache
import "time"
type Captcha interface {
Get(key string) (interface{}, bool)
Set(key string, value interface{}, ttl time.Duration)
Delete(key string)
IsChecked(key string) bool
}