diff --git a/captcha.go b/captcha.go index bda1600..0787e05 100644 --- a/captcha.go +++ b/captcha.go @@ -2,6 +2,6 @@ package contracts type Captcha interface { RouteMiddleware - Verify(id int64, answer string, clear bool) error + Verify(answer string, clear bool) error Generate(captchaUuid, recipient, ip string, u User) (body string, id int64, err error) }