refactor services to use Interface and change name to app

This commit is contained in:
Robin Olsen
2026-02-22 16:16:09 +01:00
parent dbf619a054
commit 118e67dbf4
36 changed files with 247 additions and 219 deletions

View File

@@ -18,8 +18,9 @@ func NewBaseIssue() *IssueBuilder {
WithID("pm-abc").
WithTitle("Basic Issue").
WithDescription("Basic Description").
WithIssueType(TypeTask).
WithStatus(StatusOpen)
WithStatus(StatusOpen).
WithIssueType(TypeTask)
}
func (b *IssueBuilder) WithID(id string) *IssueBuilder {