mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-27 02:00:52 -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}
|