You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
309 B
10 lines
309 B
2 years ago
|
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)
|
||
|
}
|