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.
20 lines
318 B
20 lines
318 B
4 years ago
|
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"))
|
||
|
}
|