archiver: cleanup Saver interface

This commit is contained in:
Michael Eischer 2022-05-22 17:31:37 +02:00
parent 79321a195c
commit dcb00fd2d1
1 changed files with 0 additions and 1 deletions

View File

@ -11,7 +11,6 @@ import (
// Saver allows saving a blob.
type Saver interface {
SaveBlob(ctx context.Context, t restic.BlobType, data []byte, id restic.ID, storeDuplicate bool) (restic.ID, bool, int, error)
Index() restic.MasterIndex
}
// BlobSaver concurrently saves incoming blobs to the repo.