Merge pull request #1149 from restic/azure-support

Add Azure blob storage as backend
This commit is contained in:
Alexander Neumann 2017-08-09 21:30:35 +02:00
commit b67c178672
995 changed files with 327238 additions and 5 deletions

View file

@ -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},
}