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.
|
package base64Captcha |
|
|
|
import "io" |
|
|
|
//Item is captcha item interface |
|
type Item interface { |
|
//WriteTo writes to a writer |
|
WriteTo(w io.Writer) (n int64, err error) |
|
//EncodeB64string encodes as base64 string |
|
EncodeB64string() string |
|
}
|
|
|