store_interface.go 234 B

1234567891011
  1. package verifycode
  2. type Store interface {
  3. // 保存验证码
  4. Set(key string, value string) bool
  5. // 获取验证码
  6. Get(key string, clear bool) string
  7. // 检查验证码是否正确
  8. Verify(key, answer string, clear bool) bool
  9. }