| 66 | ) |
| 67 | |
| 68 | type imlServiceController struct { |
| 69 | module service.IServiceModule `autowired:""` |
| 70 | docModule service.IServiceDocModule `autowired:""` |
| 71 | subscribeModule subscribe.ISubscribeModule `autowired:""` |
| 72 | aiAPIModule ai_api.IAPIModule `autowired:""` |
| 73 | routerModule router.IRouterModule `autowired:""` |
| 74 | apiDocModule api_doc.IAPIDocModule `autowired:""` |
| 75 | providerModule ai.IProviderModule `autowired:""` |
| 76 | aiLocalModel ai_local.ILocalModelModule `autowired:""` |
| 77 | appModule service.IAppModule `autowired:""` |
| 78 | upstreamModule upstream.IUpstreamModule `autowired:""` |
| 79 | settingModule system.ISettingModule `autowired:""` |
| 80 | teamModule team.ITeamModule `autowired:""` |
| 81 | catalogueModule catalogue.ICatalogueModule `autowired:""` |
| 82 | monitorModule monitor.IMonitorStatisticModule `autowired:""` |
| 83 | monitorConfigModule monitor.IMonitorConfigModule `autowired:""` |
| 84 | transaction store.ITransaction `autowired:""` |
| 85 | } |
| 86 | |
| 87 | func (i *imlServiceController) RestLogInfo(ctx *gin.Context, serviceId string, logId string) (*service_dto.RestLogInfo, error) { |
| 88 | return i.module.RestLogInfo(ctx, serviceId, logId) |
nothing calls this directly
no outgoing calls
no test coverage detected