restic/src/restic/backend/layout.go
2017-03-26 22:20:10 +02:00

12 lines
194 B
Go

package backend
import (
"restic"
)
// Layout computes paths for file name storage.
type Layout interface {
Filename(restic.Handle) string
Dirname(restic.Handle) string
Paths() []string
}