🎨 set up routes

This commit is contained in:
landaiqing
2024-08-04 13:11:54 +08:00
parent 3dac34d307
commit f4b69b5d31
8 changed files with 137 additions and 6 deletions

View 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) {
})
}