2021-01-31 07:23:14 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
const (
|
2021-01-31 13:06:09 +00:00
|
|
|
OutputFormatDefault = "default"
|
|
|
|
OutputFormatCSV = "csv"
|
|
|
|
OutputFormatTable = "table"
|
|
|
|
OutputFormatJSON = "json"
|
|
|
|
OutputFormatYAML = "yaml"
|
|
|
|
OutputFormatQR = "qr"
|
2021-01-31 07:23:14 +00:00
|
|
|
)
|