From a79b4c33a67905488233a789a6e35677c5e27985 Mon Sep 17 00:00:00 2001 From: what Date: Tue, 30 Jan 2024 17:48:30 +0800 Subject: [PATCH] =?UTF-8?q?[feat]=20=E8=B0=83=E6=95=B4=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- captcha.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }