Creating Projects, Tasks and editing Task details, done/resume working.

This commit is contained in:
Anis Ahmad
2020-05-30 01:30:26 +06:00
parent 6f9580d98a
commit 30cd7f40a1
13 changed files with 564 additions and 254 deletions

View File

@@ -9,5 +9,6 @@ type ProjectRepository interface {
GetByUUID(UUID string) (model.Project, error)
Create(title, UUID string) (model.Project, error)
Update(p *model.Project) error
UpdateField(p *model.Project, field string, value interface{}) error
Delete(p *model.Project) error
}