package admin import ( "github.com/gin-gonic/gin" ) // InitRoute 初始化路由 func InitRoute(g *gin.RouterGroup) { user(g.Group("/user")) // 用户相关路由 }