serve webdav: this implements a webdav server for any rclone remote.

This commit is contained in:
Nick Craig-Wood 2017-04-25 14:57:59 +01:00
parent c4ad3ac94c
commit 68d0b5adbb
3 changed files with 205 additions and 0 deletions

View file

@ -5,11 +5,13 @@ import (
"github.com/ncw/rclone/cmd"
"github.com/ncw/rclone/cmd/serve/http"
"github.com/ncw/rclone/cmd/serve/webdav"
"github.com/spf13/cobra"
)
func init() {
Command.AddCommand(http.Command)
Command.AddCommand(webdav.Command)
cmd.Root.AddCommand(Command)
}