| 38 | ) |
| 39 | |
| 40 | type imlMcpModule struct { |
| 41 | serviceService service.IServiceService `autowired:""` |
| 42 | appService service.IServiceService `autowired:""` |
| 43 | appAuthorizationService application_authorization.IAuthorizationService `autowired:""` |
| 44 | apiDocService api_doc.IAPIDocService `autowired:""` |
| 45 | subscriberService subscribe.ISubscribeService `autowired:""` |
| 46 | releaseService release.IReleaseService `autowired:""` |
| 47 | } |
| 48 | |
| 49 | func (i *imlMcpModule) subscribeServiceIds(ctx context.Context, appId string) ([]string, error) { |
| 50 | subscribes, err := i.subscriberService.SubscriptionsByApplication(ctx, appId) |
nothing calls this directly
no outgoing calls
no test coverage detected