all repos — captcha @ caf79f3bd2e22476ecba6f08fb28db4afaf44c17

Go package captcha implements generation and verification of image and audio CAPTCHAs.

cmd/main.go (view raw)

 1package main
 2
 3import (
 4	"github.com/dchest/captcha"
 5	"os"
 6)
 7
 8func main() {
 9	captcha.Encode(os.Stdout)
10}