boltstore/consts.go

12 lines
217 B
Go
Raw Normal View History

2014-06-13 22:36:36 +04:00
package boltstore
import "time"
const (
defaultPath = "/"
defaultDBPath = "./sessions.db"
defaultBucketName = "sessions"
defaultBatchSize = 1000
defaultCheckInterval = 10 * time.Second
)