teleport/constants.go

16 lines
279 B
Go
Raw Normal View History

package teleport
import (
"time"
)
// ForeverTTL means that object TTL will not expire unless deleted
2016-03-11 01:03:01 +00:00
const ForeverTTL time.Duration = 0
const (
// BoltBackendType is a BoltDB backend
BoltBackendType = "bolt"
// ETCDBackendType is etcd backend
ETCDBackendType = "etcd"
)