nightingale/vendor/github.com/mojocn/base64Captcha/interface_driver.go

10 lines
309 B
Go
Raw Normal View History

2020-11-16 08:56:04 +08:00
package base64Captcha
// Driver captcha interface for captcha engine to to write staff
type Driver interface {
//DrawCaptcha draws binary item
DrawCaptcha(content string) (item Item, err error)
//GenerateIdQuestionAnswer creates rand id, content and answer
GenerateIdQuestionAnswer() (id, q, a string)
}