mirror of
https://github.com/rclone/rclone.git
synced 2025-08-17 17:11:37 +02:00
serve restic: serves a remote in restic REST API format
This commit is contained in:
@ -5,6 +5,7 @@ import (
|
||||
|
||||
"github.com/ncw/rclone/cmd"
|
||||
"github.com/ncw/rclone/cmd/serve/http"
|
||||
"github.com/ncw/rclone/cmd/serve/restic"
|
||||
"github.com/ncw/rclone/cmd/serve/webdav"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
@ -12,6 +13,7 @@ import (
|
||||
func init() {
|
||||
Command.AddCommand(http.Command)
|
||||
Command.AddCommand(webdav.Command)
|
||||
Command.AddCommand(restic.Command)
|
||||
cmd.Root.AddCommand(Command)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user