| 28 | ) |
| 29 | |
| 30 | type imlCertificate struct { |
| 31 | service certificate.ICertificateService `autowired:""` |
| 32 | userInfoService account.IAccountService `autowired:""` |
| 33 | clusterService cluster.IClusterService `autowired:""` |
| 34 | transaction store.ITransaction `autowired:""` |
| 35 | } |
| 36 | |
| 37 | func (m *imlCertificate) getCertificates(ctx context.Context, clusterId string) ([]*gateway.DynamicRelease, error) { |
| 38 | certs, err := m.service.List(ctx, clusterId) |
nothing calls this directly
no outgoing calls
no test coverage detected