You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
374 B

package router
import (
"github.com/gin-gonic/gin"
)
func Router(router *gin.RouterGroup) {
// 管理后台路由
routerManage(router.Group("manage"))
// 供应商路由
routerGys(router.Group("supplier"))
// 任务路由
routerTask(router.Group("task"))
// app端路由
routerApp(router.Group("app"))
// 微信端路由
routerWxapp(router.Group("wxapp"))
}