mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-01 08:01:35 -05:00
14 lines
307 B
Go
14 lines
307 B
Go
package constants
|
|
|
|
const (
|
|
OutputFormatNone = "none"
|
|
OutputFormatText = "text"
|
|
OutputFormatBrief = "brief"
|
|
OutputFormatCSV = "csv"
|
|
OutputFormatJSON = "json"
|
|
OutputFormatHTML = "html"
|
|
OutputFormatMarkdown = "md"
|
|
OutputFormatTable = "table"
|
|
OutputFormatLine = "line"
|
|
)
|