diff --git a/internal/router/api/v1/account/register.go b/internal/router/api/v1/account/register.go index 9b2300e..90a6db9 100644 --- a/internal/router/api/v1/account/register.go +++ b/internal/router/api/v1/account/register.go @@ -15,8 +15,6 @@ package account import ( - "fmt" - "git.supernets.org/perp/gopay/internal/context" "git.supernets.org/perp/gopay/internal/jwt" v1 "git.supernets.org/perp/gopay/internal/models/v1" @@ -47,7 +45,6 @@ func Register(ctx *context.Context) { // Bind JSON err := ctx.BindJSON(&body) if err != nil { - fmt.Println(err) ctx.JSON(400, ctx.Error("MissingBody")) return }