airshipctl/pkg/environment/constants.go
Ian Howell e42049919e [#28] Fix bad defaults for config file paths.
This moves the management of default file paths away from pflag and
into airshipctl.

Change-Id: Ib2f701d727fdd28794980cf44722d3147d4e6f07
2020-02-10 16:25:43 -06:00

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"