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