KPI绩效考核系统
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
621 B

3 years ago
package apirouter
import (
"key_performance_indicators/apirouter/apishiyan"
"key_performance_indicators/apirouter/empower"
mytest "key_performance_indicators/apirouter/myTest"
honorsRoute "key_performance_indicators/apirouter/v1/honorsRoute"
"key_performance_indicators/apirouter/verifyLogin"
// "key_performance_indicators/v1"
)
//路由结构
type RouterGroup struct {
EmpowerRouter empower.EmpowerApiRouter
VerifyLogin verifyLogin.ApiRouter
ShiyanApi apishiyan.ApiRouter
HonorsSouteRouter honorsRoute.ApiRouter
MyTest mytest.TestApi
}
var RouterGroupEntry = new(RouterGroup)