|
|
|
|
package apirouter
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"appPlatform/apirouter/apishiyan"
|
|
|
|
|
"appPlatform/apirouter/authenticationroute"
|
|
|
|
|
"appPlatform/apirouter/v1/customerformrouter"
|
|
|
|
|
dictrouters "appPlatform/apirouter/v1/dict_routers"
|
|
|
|
|
"appPlatform/apirouter/v1/grantsystempower"
|
|
|
|
|
"appPlatform/apirouter/v1/mathsrouter"
|
|
|
|
|
matrixrouters "appPlatform/apirouter/v1/matrixRouters"
|
|
|
|
|
menusrouters "appPlatform/apirouter/v1/menusRouters"
|
|
|
|
|
"appPlatform/apirouter/v1/newsclassrouter"
|
|
|
|
|
"appPlatform/apirouter/v1/public"
|
|
|
|
|
"appPlatform/apirouter/v1/redisRouter"
|
|
|
|
|
"appPlatform/apirouter/v1/taskrouter"
|
|
|
|
|
userrouters "appPlatform/apirouter/v1/userRouters"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 路由结构
|
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var RouterGroupEntry = new(RouterGroup)
|