CreateProject creates project
(ctx context.Context, project *model.Project)
| 9 | |
| 10 | // CreateProject creates project |
| 11 | func (m *Module) CreateProject(ctx context.Context, project *model.Project) error { |
| 12 | return m.driver.CreateProject(ctx, project) |
| 13 | } |
| 14 | |
| 15 | // DeleteProject deletes project |
| 16 | func (m *Module) DeleteProject(ctx context.Context, projectID string) error { |
nothing calls this directly
no test coverage detected