Files
Go-Web-Template/server/router/system/enter.go
2026-04-10 17:57:48 +08:00

43 lines
1.4 KiB
Go

package system
import api "git.echol.cn/loser/Go-Web-Template/server/api/v1"
type RouterGroup struct {
ApiRouter
JwtRouter
SysRouter
BaseRouter
InitRouter
MenuRouter
UserRouter
CasbinRouter
AuthorityRouter
DictionaryRouter
OperationRecordRouter
DictionaryDetailRouter
AuthorityBtnRouter
McpRouter
SysParamsRouter
SysErrorRouter
LoginLogRouter
ApiTokenRouter
}
var (
dbApi = api.ApiGroupApp.SystemApiGroup.DBApi
jwtApi = api.ApiGroupApp.SystemApiGroup.JwtApi
baseApi = api.ApiGroupApp.SystemApiGroup.BaseApi
casbinApi = api.ApiGroupApp.SystemApiGroup.CasbinApi
systemApi = api.ApiGroupApp.SystemApiGroup.SystemApi
sysParamsApi = api.ApiGroupApp.SystemApiGroup.SysParamsApi
authorityApi = api.ApiGroupApp.SystemApiGroup.AuthorityApi
apiRouterApi = api.ApiGroupApp.SystemApiGroup.SystemApiApi
dictionaryApi = api.ApiGroupApp.SystemApiGroup.DictionaryApi
authorityBtnApi = api.ApiGroupApp.SystemApiGroup.AuthorityBtnApi
authorityMenuApi = api.ApiGroupApp.SystemApiGroup.AuthorityMenuApi
operationRecordApi = api.ApiGroupApp.SystemApiGroup.OperationRecordApi
dictionaryDetailApi = api.ApiGroupApp.SystemApiGroup.DictionaryDetailApi
mcpApi = api.ApiGroupApp.SystemApiGroup.McpApi
sysErrorApi = api.ApiGroupApp.SystemApiGroup.SysErrorApi
)