driftctl/pkg/memstore/buckets.go

9 lines
170 B
Go
Raw Normal View History

2021-06-25 15:14:50 +00:00
package memstore
2021-06-28 12:39:14 +00:00
type BucketName int
2021-06-25 15:14:50 +00:00
const (
// TelemetryBucket is the name of the store bucket used by the telemetry service
2021-06-28 12:39:14 +00:00
TelemetryBucket BucketName = iota + 1
2021-06-25 15:14:50 +00:00
)