airshipctl/pkg/environment/constants.go
Ian Howell 5999d17323 Add argo as a subcommand
This is a drop-in of the argo cmd package, with some slight tweaks to
adhere to airshipctl's models and linter. It still needs to be combed
over and modified to meet airshipctl's needs, as well as requiring unit
tests
2019-06-13 08:58:19 -05:00

14 lines
261 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"
)