mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
10 lines
178 B
Go
10 lines
178 B
Go
package constants
|
|
|
|
// constants for telemetry config flag
|
|
const (
|
|
TelemetryNone = "none"
|
|
TelemetryInfo = "info"
|
|
)
|
|
|
|
var TelemetryLevels = []string{TelemetryNone, TelemetryInfo}
|