mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-17 19:00:12 -05:00
14 lines
357 B
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"
|
|
)
|