| 60 | ) |
| 61 | |
| 62 | type imlCatalogueModule struct { |
| 63 | catalogueService catalogue.ICatalogueService `autowired:""` |
| 64 | apiService api.IAPIService `autowired:""` |
| 65 | apiDocService api_doc.IAPIDocService `autowired:""` |
| 66 | serviceService service.IServiceService `autowired:""` |
| 67 | serviceOverviewService service_overview.IOverviewService `autowired:""` |
| 68 | serviceTagService service_tag.ITagService `autowired:""` |
| 69 | serviceDocService service_doc.IDocService `autowired:""` |
| 70 | tagService tag.ITagService `autowired:""` |
| 71 | releaseService release.IReleaseService `autowired:""` |
| 72 | subscribeService subscribe.ISubscribeService `autowired:""` |
| 73 | subscribeApplyService subscribe.ISubscribeApplyService `autowired:""` |
| 74 | transaction store.ITransaction `autowired:""` |
| 75 | clusterService cluster.IClusterService `autowired:""` |
| 76 | settingService setting.ISettingService `autowired:""` |
| 77 | monitorService monitor.IMonitorService `autowired:""` |
| 78 | root *Root |
| 79 | } |
| 80 | |
| 81 | func (i *imlCatalogueModule) DefaultCatalogue(ctx context.Context) (*catalogue_dto.Catalogue, error) { |
| 82 | catalogues, err := i.catalogueService.List(ctx) |
nothing calls this directly
no outgoing calls
no test coverage detected