feat: base implementation
This commit is contained in:
14
cmd/config.go
Normal file
14
cmd/config.go
Normal file
@ -0,0 +1,14 @@
|
||||
package cmd
|
||||
|
||||
type AppConfig struct {
|
||||
OutputVerbose bool
|
||||
OutputMode string
|
||||
}
|
||||
|
||||
type OutputMode string
|
||||
|
||||
const (
|
||||
Go OutputMode = "go"
|
||||
Json OutputMode = "json"
|
||||
Yaml OutputMode = "yaml"
|
||||
)
|
||||
Reference in New Issue
Block a user