From f09c8d04cafdfaf5734596bacdb7071059644785 Mon Sep 17 00:00:00 2001 From: junleea <354425203@qq.com> Date: Wed, 14 May 2025 13:03:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B3=A8=E5=86=8C=E9=AA=8C?= =?UTF-8?q?=E8=AF=81=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- handler/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/user.go b/handler/user.go index 883f06c..8a402f2 100644 --- a/handler/user.go +++ b/handler/user.go @@ -18,7 +18,7 @@ import ( func SetUpUserGroup(router *gin.Engine) { userGroup := router.Group("/user") - userGroup.POST("/register", registerHandler) + userGroup.POST("/register", registerHandlerV2) userGroup.POST("/register_code", handleRegisterCode) //注册验证码 userGroup.POST("/login", loginHandler) userGroup.POST("/uuid", GetScanUUID)