15 lines
192 B
Go
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"
|
|
)
|