Files
steampipe/constants/output_format.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"
)