| 39 | ) |
| 40 | |
| 41 | type imlRouterModule struct { |
| 42 | teamService team.ITeamService `autowired:""` |
| 43 | serviceService service.IServiceService `autowired:""` |
| 44 | apiService api.IAPIService `autowired:""` |
| 45 | upstreamService upstream.IUpstreamService `autowired:""` |
| 46 | transaction store.ITransaction `autowired:""` |
| 47 | } |
| 48 | |
| 49 | func (i *imlRouterModule) SimpleAPIs(ctx context.Context, input *router_dto.InputSimpleAPI) ([]*router_dto.SimpleItem, error) { |
| 50 | list, err := i.apiService.ListForServices(ctx, input.Services...) |
nothing calls this directly
no outgoing calls
no test coverage detected