(ctx context.Context, project *model.Project)
| 25 | // Interface is the interface of the modules which interact with the deployment targets |
| 26 | type Interface interface { |
| 27 | CreateProject(ctx context.Context, project *model.Project) error |
| 28 | DeleteProject(ctx context.Context, projectID string) error |
| 29 | ApplyService(ctx context.Context, service *model.Service) error |
| 30 | GetServices(ctx context.Context, projectID string) ([]*model.Service, error) |
no outgoing calls
no test coverage detected