diff --git a/server/app/internal/handlers/account/register_with_email.go b/server/app/internal/handlers/account/register_with_email.go index 6662c29..c647766 100644 --- a/server/app/internal/handlers/account/register_with_email.go +++ b/server/app/internal/handlers/account/register_with_email.go @@ -3,6 +3,6 @@ package account import "github.com/gin-gonic/gin" // 注册使用email -func PostRegisterWithEmail(ctx *gin.Context) { +func RegisterWithEmail(ctx *gin.Context) { } diff --git a/server/app/main.go b/server/app/main.go index 2040244..1a0d001 100644 --- a/server/app/main.go +++ b/server/app/main.go @@ -6,18 +6,21 @@ import ( "github.com/gin-gonic/gin" "github.com/iapologizewhenimwrong/Vestmore_GO/model" "github.com/iapologizewhenimwrong/Vestmore_GO/server/app/internal/handlers" + "github.com/iapologizewhenimwrong/Vestmore_GO/server/app/internal/handlers/account" _ "github.com/go-sql-driver/mysql" ) -func AppV10(ctx *gin.Context) { +func AppV1_0(ctx *gin.Context) { if actionKey, ok := ctx.GetPostForm("action"); ok { // if token, ok := ctx.GetPostForm("token"); ok { // } handlers.HandlersFuncRoutes[actionKey](ctx) + return } + } func main() { @@ -25,12 +28,15 @@ func main() { model.Models.SetSqlxDriver("mysql", "php:aFk3i4Dj#76!4sd@tcp(47.243.100.6:3306)/zunxinfinance?charset=utf8mb4&timeout=10s") r := gin.Default() - v10 := r.Group("app") - v10.POST("/1_0", AppV10) + app_1_0 := r.Group("app") + account_1_0 := app_1_0.Group("account") + account_1_0.POST("/register_with_email", account.RegisterWithEmail) + + app_1_0.POST("/1_0", AppV1_0) for k := range handlers.HandlersFuncRoutes { - log.Printf("api %s", k) + log.Printf("api action %s", k) } r.Run(":8080")