2015-03-28 10:50:23 +00:00
|
|
|
package backend
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
|
|
|
// Default paths for file-based backends (e.g. local)
|
|
|
|
var Paths = struct {
|
|
|
|
Data string
|
|
|
|
Snapshots string
|
2015-04-26 13:48:35 +00:00
|
|
|
Index string
|
2015-03-28 10:50:23 +00:00
|
|
|
Locks string
|
|
|
|
Keys string
|
|
|
|
Temp string
|
2015-05-03 14:43:27 +00:00
|
|
|
Config string
|
2015-03-28 10:50:23 +00:00
|
|
|
}{
|
|
|
|
"data",
|
|
|
|
"snapshots",
|
2015-04-26 13:48:35 +00:00
|
|
|
"index",
|
2015-03-28 10:50:23 +00:00
|
|
|
"locks",
|
|
|
|
"keys",
|
|
|
|
"tmp",
|
2015-05-03 14:43:27 +00:00
|
|
|
"config",
|
2015-03-28 10:50:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Default modes for file-based backends
|
|
|
|
var Modes = struct{ Dir, File os.FileMode }{0700, 0600}
|