e42049919e
This moves the management of default file paths away from pflag and into airshipctl. Change-Id: Ib2f701d727fdd28794980cf44722d3147d4e6f07
16 lines
289 B
Go
16 lines
289 B
Go
package environment
|
|
|
|
// OutputFormat denotes the form with which to display tabulated data
|
|
type OutputFormat string
|
|
|
|
// These are valid values for OutputFormat
|
|
const (
|
|
Default = ""
|
|
JSON = "json"
|
|
YAML = "yaml"
|
|
NameOnly = "name"
|
|
Wide = "wide"
|
|
)
|
|
|
|
const HomeEnvVar = "$HOME"
|