forked from TrueCloudLab/restic
Add global interface Repository
This commit is contained in:
parent
3fa7304e94
commit
3b57075109
1 changed files with 19 additions and 0 deletions
19
src/restic/repository.go
Normal file
19
src/restic/repository.go
Normal file
|
@ -0,0 +1,19 @@
|
|||
package restic
|
||||
|
||||
import (
|
||||
"restic/backend"
|
||||
"restic/pack"
|
||||
)
|
||||
|
||||
// Repository manages encrypted and packed data stored in a backend.
|
||||
type Repository interface {
|
||||
LoadJSONUnpacked(backend.Type, backend.ID, interface{}) error
|
||||
|
||||
Lister
|
||||
}
|
||||
|
||||
// Lister combines lists packs in a repo and blobs in a pack.
|
||||
type Lister interface {
|
||||
List(backend.Type, <-chan struct{}) <-chan backend.ID
|
||||
ListPack(backend.ID) ([]pack.Blob, int64, error)
|
||||
}
|
Loading…
Reference in a new issue