1
0
mirror of https://github.com/restic/restic.git synced 2024-06-22 07:26:38 +02:00

Add rest backend to ui parser

This commit is contained in:
Alexander Neumann 2016-02-21 15:24:46 +01:00
parent ec34da2d66
commit bd621197f8

View File

@ -8,15 +8,17 @@ import (
"strings" "strings"
"syscall" "syscall"
"github.com/jessevdk/go-flags"
"golang.org/x/crypto/ssh/terminal"
"restic/backend" "restic/backend"
"restic/backend/local" "restic/backend/local"
"restic/backend/rest"
"restic/backend/s3" "restic/backend/s3"
"restic/backend/sftp" "restic/backend/sftp"
"restic/debug" "restic/debug"
"restic/location" "restic/location"
"restic/repository" "restic/repository"
"github.com/jessevdk/go-flags"
"golang.org/x/crypto/ssh/terminal"
) )
var version = "compiled manually" var version = "compiled manually"
@ -247,6 +249,8 @@ func open(s string) (backend.Backend, error) {
debug.Log("open", "opening s3 repository at %#v", cfg) debug.Log("open", "opening s3 repository at %#v", cfg)
return s3.Open(cfg) return s3.Open(cfg)
case "rest":
return rest.Open(loc.Config.(rest.Config))
} }
debug.Log("open", "invalid repository location: %v", s) debug.Log("open", "invalid repository location: %v", s)
@ -280,6 +284,8 @@ func create(s string) (backend.Backend, error) {
debug.Log("open", "create s3 repository at %#v", loc.Config) debug.Log("open", "create s3 repository at %#v", loc.Config)
return s3.Open(cfg) return s3.Open(cfg)
case "rest":
return rest.Open(loc.Config.(rest.Config))
} }
debug.Log("open", "invalid repository scheme: %v", s) debug.Log("open", "invalid repository scheme: %v", s)