add completions to survey

This commit is contained in:
Robin Olsen
2026-02-28 10:44:41 +01:00
parent 9ce9b6ee07
commit 8cdaf93f26
8 changed files with 47 additions and 35 deletions

View File

@@ -8,17 +8,13 @@ import (
"github.com/steveyegge/beads"
)
// ValidationFeedback holds task validation status
type ValidationFeedback struct {
Success bool
Message string
}
type App struct {
Config Config
Issues IssueService
Stats StatsService
Logger *slog.Logger
Config Config
Issues IssueService
Stats StatsService
Logger *slog.Logger
CurrentFeedback *ValidationFeedback
}
@@ -33,3 +29,8 @@ type StatsService interface {
Save(ctx context.Context) error
GetStatistics() (models.Statistics, error)
}
type ValidationFeedback struct {
Success bool
Message string
}