restic/internal/backend/paths.go

27 lines
471 B
Go
Raw Normal View History

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