mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 14:00:14 -05:00
21 lines
519 B
Go
21 lines
519 B
Go
package constants
|
|
|
|
const (
|
|
// query output format
|
|
OutputFormatCSV = "csv"
|
|
OutputFormatJSON = "json"
|
|
OutputFormatTable = "table"
|
|
OutputFormatLine = "line"
|
|
|
|
// check output format
|
|
CheckOutputFormatNone = "none"
|
|
CheckOutputFormatText = "text"
|
|
CheckOutputFormatBrief = "brief"
|
|
CheckOutputFormatCSV = "csv"
|
|
CheckOutputFormatJSON = "json"
|
|
CheckOutputFormatHTML = "html"
|
|
CheckOutputFormatMarkdown = "md"
|
|
CheckOutputFormatNUnit3 = "nunit3"
|
|
CheckOutputFormatAsffJson = "json-asff"
|
|
)
|