mirror of
https://github.com/octoleo/restic.git
synced 2024-11-29 08:14:03 +00:00
15 lines
299 B
Go
15 lines
299 B
Go
package layout
|
|
|
|
import (
|
|
"github.com/restic/restic/internal/backend"
|
|
)
|
|
|
|
// Layout computes paths for file name storage.
|
|
type Layout interface {
|
|
Filename(backend.Handle) string
|
|
Dirname(backend.Handle) string
|
|
Basedir(backend.FileType) (dir string, subdirs bool)
|
|
Paths() []string
|
|
Name() string
|
|
}
|