Files
steampipe/pkg/constants/output_format.go

14 lines
357 B
Go

package constants
const (
OutputFormatCSV = "csv"
OutputFormatJSON = "json"
OutputFormatTable = "table"
OutputFormatLine = "line"
OutputFormatNone = "none"
OutputFormatText = "text"
OutputFormatBrief = "brief"
OutputFormatSnapshot = "snapshot"
OutputFormatSnapshotShort = "sps"
)