Skip to content

Commit

Permalink
fix example package name
Browse files Browse the repository at this point in the history
  • Loading branch information
harpy-wings committed Feb 21, 2021
1 parent 7f78219 commit 4ad1dc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import (
"log"
"net/http"

ic "github.com/IrisDev-net/irisCaptchaGo"
irisCaptcha "github.com/IrisDev-net/iriscaptchago"
)

const myIrisCaptchaSecret = `533a64afb4c496cc34dfd00d1ecbd45cfa2784b2c3eba4aa02e7a4dcbe081aa40x2711`

func main() {
ICH, err := ic.NewIrisCaptchaHandler(myIrisCaptchaSecret)
ICH, err := irisCaptcha.NewIrisCaptchaHandler(myIrisCaptchaSecret)
if err != nil {
log.Panic(err)
}
Expand Down

0 comments on commit 4ad1dc3

Please sign in to comment.