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

@ -499,3 +499,8 @@ func (r *SFTP) Close() error {
<-r.result
return nil
}
// Delete removes all data in the backend.
func (r *SFTP) Delete(context.Context) error {
return r.c.RemoveDirectory(r.p)
}