backend: Add Delete() to restic.Backend interface

This commit is contained in:
Alexander Neumann 2017-10-14 13:38:17 +02:00
parent 3736f33ebf
commit 0e722efb09
4 changed files with 40 additions and 1 deletions

View file

@ -275,7 +275,7 @@ func (b *Local) List(ctx context.Context, t restic.FileType) <-chan string {
}
// Delete removes the repository and all files.
func (b *Local) Delete() error {
func (b *Local) Delete(ctx context.Context) error {
debug.Log("Delete()")
return fs.RemoveAll(b.Path)
}