This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/router/modules/auth_router.go
landaiqing f4b69b5d31 🎨 set up routes
2024-08-04 13:11:54 +08:00

11 lines
176 B
Go

package modules
import "github.com/gin-gonic/gin"
func AuthRouter(router *gin.RouterGroup) {
group := router.Group("auth")
group.GET("/user", func(c *gin.Context) {
})
}