diff options
Diffstat (limited to 'auth/router.go')
-rw-r--r-- | auth/router.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/auth/router.go b/auth/router.go index 4a0bb94..b8d5b0d 100644 --- a/auth/router.go +++ b/auth/router.go @@ -24,6 +24,7 @@ import ( func Routes(route *gin.RouterGroup) { g := route.Group("/auth") { - g.POST("/sign-in", handleSignIn) + g.POST("/signup", handleSignUp) + g.POST("/signin", handleSignIn) } } |