Add global interface Repository

This commit is contained in:
Alexander Neumann 2016-08-14 16:04:34 +02:00
parent 3fa7304e94
commit 3b57075109
1 changed files with 19 additions and 0 deletions

19
src/restic/repository.go Normal file
View 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)
}