This commit is contained in:
2026-03-20 12:33:37 +01:00
commit ce3925423f
44 changed files with 3143 additions and 0 deletions

11
internal/user/routes.go Normal file
View File

@@ -0,0 +1,11 @@
package user
import (
"github.com/gin-gonic/gin"
)
func RegisterRoutes(r *gin.RouterGroup, h *Handler) {
//auth := r.Group("/user")
//auth.POST("/register", h.Register)
}