diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-09-10 13:49:34 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-09-10 13:49:34 +0530 |
commit | 794a9c07ffc7dc72993f5240796dfe643d73ed82 (patch) | |
tree | 26e8175982cb00dcd3dc4f099b6b7309ddda2fa1 /auth/controller.go | |
parent | 8f2180401fd05ba63633d9559dc156f5ca1573ba (diff) |
validating email upon user sign upv0.0.7
Diffstat (limited to 'auth/controller.go')
-rw-r--r-- | auth/controller.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/auth/controller.go b/auth/controller.go index 1e6f7fe..71cdc6a 100644 --- a/auth/controller.go +++ b/auth/controller.go @@ -25,7 +25,6 @@ import ( "vidhukant.com/openbills/user" "net/http" "time" - "fmt" ) var ( @@ -72,8 +71,6 @@ func handleSignIn (ctx *gin.Context) { var req LoginReq ctx.Bind(&req) - fmt.Println(req) - var err error var u user.User |