add ParseToken

This commit is contained in:
wenxu12345 2022-05-10 10:12:53 +08:00
parent 6226f65e20
commit ac9620c253

View File

@ -97,6 +97,7 @@ func main() {
{
authRouterGroup.POST("/user_register", apiAuth.UserRegister) //1
authRouterGroup.POST("/user_token", apiAuth.UserToken) //1
authRouterGroup.POST("/parse_token", apiAuth.ParseToken) //1
}
//Third service
thirdGroup := r.Group("/third")