添加注册验证码

This commit is contained in:
junleea 2025-05-14 13:03:01 +08:00
parent bc31944d61
commit f09c8d04ca
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ import (
func SetUpUserGroup(router *gin.Engine) { func SetUpUserGroup(router *gin.Engine) {
userGroup := router.Group("/user") userGroup := router.Group("/user")
userGroup.POST("/register", registerHandler) userGroup.POST("/register", registerHandlerV2)
userGroup.POST("/register_code", handleRegisterCode) //注册验证码 userGroup.POST("/register_code", handleRegisterCode) //注册验证码
userGroup.POST("/login", loginHandler) userGroup.POST("/login", loginHandler)
userGroup.POST("/uuid", GetScanUUID) userGroup.POST("/uuid", GetScanUUID)