1
0
mirror of https://github.com/restic/restic.git synced 2025-05-09 03:36:55 +00:00
2024-08-31 17:25:24 +02:00

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
}