2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-03 09:30:50 +00:00
restic/internal/backend/paths.go

27 lines
471 B
Go
Raw Normal View History

2015-03-28 10:50:23 +00:00
package backend
import "os"
2016-01-26 20:56:13 +00:00
// Paths contains the default paths for file-based backends (e.g. local).
2015-03-28 10:50:23 +00:00
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
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",
"config",
2015-03-28 10:50:23 +00:00
}
2016-01-26 20:56:13 +00:00
// Modes holds the default modes for directories and files for file-based
// backends.
2015-03-28 10:50:23 +00:00
var Modes = struct{ Dir, File os.FileMode }{0700, 0600}