12 lines
220 B
Go
12 lines
220 B
Go
package cmd
|
|
|
|
const DefaultRequestTimeout uint = 30
|
|
|
|
type AppConfig struct {
|
|
OutputVerbose bool
|
|
OutputFormatter string
|
|
OutputOrderReverse bool
|
|
PrintConfig bool
|
|
RequestTimeoutSeconds uint
|
|
}
|