🎨 set up routes
This commit is contained in:
10
router/modules/auth_router.go
Normal file
10
router/modules/auth_router.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package modules
|
||||
|
||||
import "github.com/gin-gonic/gin"
|
||||
|
||||
func AuthRouter(router *gin.RouterGroup) {
|
||||
group := router.Group("auth")
|
||||
group.GET("/user", func(c *gin.Context) {
|
||||
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user