| 37 | ) |
| 38 | |
| 39 | type imlReleaseModule struct { |
| 40 | projectDiffModule serviceDiff.IServiceDiffModule `autowired:""` |
| 41 | releaseService release.IReleaseService `autowired:""` |
| 42 | apiService api.IAPIService `autowired:""` |
| 43 | apiDocService api_doc.IAPIDocService `autowired:""` |
| 44 | serviceDocService service_doc.IDocService `autowired:""` |
| 45 | upstreamService upstream.IUpstreamService `autowired:""` |
| 46 | publishService publish.IPublishService `autowired:""` |
| 47 | strategyService strategy.IStrategyService `autowired:""` |
| 48 | transaction store.ITransaction `autowired:""` |
| 49 | projectService service.IServiceService `autowired:""` |
| 50 | clusterService cluster.IClusterService `autowired:""` |
| 51 | } |
| 52 | |
| 53 | func (m *imlReleaseModule) latestStrategyCommits(ctx context.Context, serviceId string) ([]*commit.Commit[strategy.Commit], error) { |
| 54 | list, err := m.strategyService.All(ctx, 2, serviceId) |
nothing calls this directly
no outgoing calls
no test coverage detected