45 lines
1.8 KiB
Go
45 lines
1.8 KiB
Go
package system
|
|
|
|
import "git.echol.cn/loser/Go-Web-Template/server/service"
|
|
|
|
type ApiGroup struct {
|
|
DBApi
|
|
JwtApi
|
|
BaseApi
|
|
SystemApi
|
|
CasbinApi
|
|
SystemApiApi
|
|
AuthorityApi
|
|
DictionaryApi
|
|
AuthorityMenuApi
|
|
OperationRecordApi
|
|
DictionaryDetailApi
|
|
AuthorityBtnApi
|
|
McpApi
|
|
SysParamsApi
|
|
SysErrorApi
|
|
LoginLogApi
|
|
ApiTokenApi
|
|
}
|
|
|
|
var (
|
|
apiService = service.ServiceGroupApp.SystemServiceGroup.ApiService
|
|
jwtService = service.ServiceGroupApp.SystemServiceGroup.JwtService
|
|
menuService = service.ServiceGroupApp.SystemServiceGroup.MenuService
|
|
userService = service.ServiceGroupApp.SystemServiceGroup.UserService
|
|
initDBService = service.ServiceGroupApp.SystemServiceGroup.InitDBService
|
|
casbinService = service.ServiceGroupApp.SystemServiceGroup.CasbinService
|
|
baseMenuService = service.ServiceGroupApp.SystemServiceGroup.BaseMenuService
|
|
authorityService = service.ServiceGroupApp.SystemServiceGroup.AuthorityService
|
|
dictionaryService = service.ServiceGroupApp.SystemServiceGroup.DictionaryService
|
|
authorityBtnService = service.ServiceGroupApp.SystemServiceGroup.AuthorityBtnService
|
|
systemConfigService = service.ServiceGroupApp.SystemServiceGroup.SystemConfigService
|
|
sysParamsService = service.ServiceGroupApp.SystemServiceGroup.SysParamsService
|
|
operationRecordService = service.ServiceGroupApp.SystemServiceGroup.OperationRecordService
|
|
dictionaryDetailService = service.ServiceGroupApp.SystemServiceGroup.DictionaryDetailService
|
|
mcpService = service.ServiceGroupApp.SystemServiceGroup.McpService
|
|
sysErrorService = service.ServiceGroupApp.SystemServiceGroup.SysErrorService
|
|
loginLogService = service.ServiceGroupApp.SystemServiceGroup.LoginLogService
|
|
apiTokenService = service.ServiceGroupApp.SystemServiceGroup.ApiTokenService
|
|
)
|