mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
26 lines
405 B
Go
26 lines
405 B
Go
package backend
|
|
|
|
import "os"
|
|
|
|
// Default paths for file-based backends (e.g. local)
|
|
var Paths = struct {
|
|
Data string
|
|
Snapshots string
|
|
Index string
|
|
Locks string
|
|
Keys string
|
|
Temp string
|
|
Config string
|
|
}{
|
|
"data",
|
|
"snapshots",
|
|
"index",
|
|
"locks",
|
|
"keys",
|
|
"tmp",
|
|
"config",
|
|
}
|
|
|
|
// Default modes for file-based backends
|
|
var Modes = struct{ Dir, File os.FileMode }{0700, 0600}
|