10 lines
207 B
Go
10 lines
207 B
Go
package common
|
|
|
|
const (
|
|
OutputFormatDefault = "default"
|
|
OutputFormatCSV = "csv"
|
|
OutputFormatTable = "table"
|
|
OutputFormatJSON = "json"
|
|
OutputFormatYAML = "yaml"
|
|
OutputFormatQR = "qr"
|
|
)
|