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

45 lines
1.7 KiB

3 years ago
package apirouter
import (
"appPlatform/apirouter/apishiyan"
2 years ago
"appPlatform/apirouter/authenticationroute"
"appPlatform/apirouter/personalityAssessment"
2 years ago
"appPlatform/apirouter/v1/customerformrouter"
datacenterrouter "appPlatform/apirouter/v1/dataCenterRouter"
3 years ago
dictrouters "appPlatform/apirouter/v1/dict_routers"
3 years ago
"appPlatform/apirouter/v1/grantsystempower"
"appPlatform/apirouter/v1/mathsrouter"
matrixrouters "appPlatform/apirouter/v1/matrixRouters"
3 years ago
menusrouters "appPlatform/apirouter/v1/menusRouters"
"appPlatform/apirouter/v1/newsclassrouter"
2 years ago
"appPlatform/apirouter/v1/public"
"appPlatform/apirouter/v1/redisRouter"
"appPlatform/apirouter/v1/taskrouter"
3 years ago
userrouters "appPlatform/apirouter/v1/userRouters"
websocketrouter "appPlatform/apirouter/v1/webSocketRouter"
workwechatrouter "appPlatform/apirouter/v1/workWechatRouter"
3 years ago
)
// 路由结构
type RouterGroup struct {
ShiyanApi apishiyan.ApiRouter
UserRouter userrouters.ApiRouter
MenusRouter menusrouters.ApiRouter
DictRouter dictrouters.ApiRouter
GrantPowerRouter grantsystempower.ApiRouter
MatrixApiRouter matrixrouters.ApiRouter
PublicRouters public.ApiRouter
SignCodeRouter authenticationroute.ApiRouter
CustomerFormRouter customerformrouter.ApiRouter
TaskRouter taskrouter.ApiRouter
NewsClassApiRouter newsclassrouter.ApiRouter
RedisClassApiRouter redisRouter.ApiRouter
MathsRouter mathsrouter.ApiRouter
WorkWechatRouter workwechatrouter.ApiRouter
DataCenterRouter datacenterrouter.ApiRouter
WebSocketRouters websocketrouter.ApiRouter
CharacterTestRongXin personalityAssessment.ApiRouter
3 years ago
}
var RouterGroupEntry = new(RouterGroup)