Files
steampipe/pkg/constants/telemetry.go

10 lines
178 B
Go

package constants
// constants for telemetry config flag
const (
TelemetryNone = "none"
TelemetryInfo = "info"
)
var TelemetryLevels = []string{TelemetryNone, TelemetryInfo}