interface_driver.go 309 B

123456789
  1. package base64Captcha
  2. // Driver captcha interface for captcha engine to to write staff
  3. type Driver interface {
  4. //DrawCaptcha draws binary item
  5. DrawCaptcha(content string) (item Item, err error)
  6. //GenerateIdQuestionAnswer creates rand id, content and answer
  7. GenerateIdQuestionAnswer() (id, q, a string)
  8. }