mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-10 19:00:30 -04: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}
|