refactor to use app package instead of service

refactor app to be composable
This commit is contained in:
Robin Olsen
2026-02-28 23:30:31 +01:00
parent ba4d3df669
commit aabce0b0b2
56 changed files with 385 additions and 279 deletions

View File

@@ -4,7 +4,7 @@ import (
"context"
"os"
"github.com/LazyBachelor/LazyPM/internal/utils"
"github.com/LazyBachelor/LazyPM/internal/utils/check"
"github.com/charmbracelet/huh"
)
@@ -80,7 +80,7 @@ func (t *CodingTask) Setup(ctx context.Context) error {
}
func (t *CodingTask) Validate(ctx context.Context) ValidationFeedback {
expect := utils.NewExpector()
expect := check.NewExpector()
expect.Assert(true, "This task is always valid")
return expect.Complete()
}