2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-07 19:40:49 +00:00

archiver: cleanup Saver interface

This commit is contained in:
Michael Eischer 2022-05-22 17:31:37 +02:00
parent 79321a195c
commit dcb00fd2d1

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.