GetServices gets services
(ctx context.Context, projectID string)
| 33 | |
| 34 | // GetServices gets services |
| 35 | func (m *Module) GetServices(ctx context.Context, projectID string) ([]*model.Service, error) { |
| 36 | return m.driver.GetServices(ctx, projectID) |
| 37 | } |
| 38 | |
| 39 | // GetServiceStatus gets services status |
| 40 | func (m *Module) GetServiceStatus(ctx context.Context, projectID string) ([]*model.ServiceStatus, error) { |
nothing calls this directly
no test coverage detected