1
0
mirror of https://github.com/restic/restic.git synced 2024-07-11 10:04:10 +02:00
restic/backend/paths.go
2015-04-29 23:27:08 +02:00

30 lines
459 B
Go

package backend
import "os"
// Default paths for file-based backends (e.g. local)
var Paths = struct {
Data string
Snapshots string
Trees string
Index string
Locks string
Keys string
Temp string
Version string
ID string
}{
"data",
"snapshots",
"trees",
"index",
"locks",
"keys",
"tmp",
"version",
"id",
}
// Default modes for file-based backends
var Modes = struct{ Dir, File os.FileMode }{0700, 0600}