Files
unifood/cmd/config.go
2025-07-20 13:47:16 +02:00

15 lines
192 B
Go

package cmd
type AppConfig struct {
OutputVerbose bool
OutputMode string
}
type OutputMode string
const (
Go OutputMode = "go"
Json OutputMode = "json"
Yaml OutputMode = "yaml"
)