应用集成平台服务端
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.

19 lines
449 B

3 years ago
package apirouter
import (
"appPlatform/apirouter/apishiyan"
3 years ago
dictrouters "appPlatform/apirouter/v1/dict_routers"
3 years ago
menusrouters "appPlatform/apirouter/v1/menusRouters"
3 years ago
userrouters "appPlatform/apirouter/v1/userRouters"
)
// 路由结构
type RouterGroup struct {
3 years ago
ShiyanApi apishiyan.ApiRouter
UserRouter userrouters.ApiRouter
MenusRouter menusrouters.ApiRouter
3 years ago
DictRouter dictrouters.ApiRouter
3 years ago
}
var RouterGroupEntry = new(RouterGroup)