DeleteProject deletes project
(ctx context.Context, projectID string)
| 14 | |
| 15 | // DeleteProject deletes project |
| 16 | func (m *Module) DeleteProject(ctx context.Context, projectID string) error { |
| 17 | return m.driver.DeleteProject(ctx, projectID) |
| 18 | } |
| 19 | |
| 20 | // ApplyService applies service |
| 21 | func (m *Module) ApplyService(ctx context.Context, service *model.Service) error { |
nothing calls this directly
no test coverage detected