From 9f471905b534bc3b5eaff03c573b2626c6590512 Mon Sep 17 00:00:00 2001 From: Cipher Vance Date: Fri, 19 Sep 2025 21:00:46 -0500 Subject: [PATCH] change group to api not auth --- routes/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/auth.go b/routes/auth.go index 5e290b8..1818c5e 100644 --- a/routes/auth.go +++ b/routes/auth.go @@ -13,7 +13,7 @@ import ( func RegisterAuthRoutes(r *gin.Engine, db *gorm.DB) { userService := services.NewUserService(db) - auth := r.Group("/auth") + auth := r.Group("/api") { auth.POST("/signup", signup(userService)) auth.POST("/login", login(userService))