forked from TrueCloudLab/restic
Merge pull request #1149 from restic/azure-support
Add Azure blob storage as backend
This commit is contained in:
commit
b67c178672
995 changed files with 327238 additions and 5 deletions
|
@ -4,6 +4,7 @@ package location
|
|||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/restic/restic/internal/backend/azure"
|
||||
"github.com/restic/restic/internal/backend/b2"
|
||||
"github.com/restic/restic/internal/backend/gs"
|
||||
"github.com/restic/restic/internal/backend/local"
|
||||
|
@ -34,6 +35,7 @@ var parsers = []parser{
|
|||
{"sftp", sftp.ParseConfig},
|
||||
{"s3", s3.ParseConfig},
|
||||
{"gs", gs.ParseConfig},
|
||||
{"azure", azure.ParseConfig},
|
||||
{"swift", swift.ParseConfig},
|
||||
{"rest", rest.ParseConfig},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue