Files
wdh-home 05ee541420
Some checks failed
CI / init (push) Has been cancelled
CI / Frontend node 18.16.0 (push) Has been cancelled
CI / Backend go (1.22) (push) Has been cancelled
CI / devops-test (1.22, 18.16.0) (push) Has been cancelled
CI / release-pr (push) Has been cancelled
CI / release-please (push) Has been cancelled
CI / devops-prod (1.22, 18.x) (push) Has been cancelled
CI / docker (push) Has been cancelled
init
2026-04-21 16:50:31 +08:00

54 lines
2.0 KiB
Go

package system
import api "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
type RouterGroup struct {
ApiRouter
JwtRouter
SysRouter
BaseRouter
InitRouter
MenuRouter
UserRouter
CasbinRouter
AutoCodeRouter
AuthorityRouter
DictionaryRouter
OperationRecordRouter
DictionaryDetailRouter
AuthorityBtnRouter
SysExportTemplateRouter
SysParamsRouter
SysVersionRouter
SysErrorRouter
LoginLogRouter
ApiTokenRouter
SkillsRouter
}
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
autoCodeApi = api.ApiGroupApp.SystemApiGroup.AutoCodeApi
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
autoCodePluginApi = api.ApiGroupApp.SystemApiGroup.AutoCodePluginApi
autocodeHistoryApi = api.ApiGroupApp.SystemApiGroup.AutoCodeHistoryApi
operationRecordApi = api.ApiGroupApp.SystemApiGroup.OperationRecordApi
autoCodePackageApi = api.ApiGroupApp.SystemApiGroup.AutoCodePackageApi
dictionaryDetailApi = api.ApiGroupApp.SystemApiGroup.DictionaryDetailApi
autoCodeTemplateApi = api.ApiGroupApp.SystemApiGroup.AutoCodeTemplateApi
exportTemplateApi = api.ApiGroupApp.SystemApiGroup.SysExportTemplateApi
sysVersionApi = api.ApiGroupApp.SystemApiGroup.SysVersionApi
sysErrorApi = api.ApiGroupApp.SystemApiGroup.SysErrorApi
skillsApi = api.ApiGroupApp.SystemApiGroup.SkillsApi
aiWorkflowSessionApi = api.ApiGroupApp.SystemApiGroup.AIWorkflowSessionApi
)