signald-go/cmd/signaldctl/common/output-formats.go

11 lines
207 B
Go
Raw Normal View History

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
)