feat: json output formatter

This commit is contained in:
2025-07-20 14:15:20 +02:00
parent 7d561ea6ea
commit 0b0f0c9f0a
8 changed files with 60 additions and 22 deletions

View File

@ -4,11 +4,3 @@ type AppConfig struct {
OutputVerbose bool
OutputMode string
}
type OutputMode string
const (
Go OutputMode = "go"
Json OutputMode = "json"
Yaml OutputMode = "yaml"
)