Update files for new ocis naming

This commit is contained in:
Thomas Boerger
2019-09-05 12:15:54 +02:00
parent 251350ed1d
commit e807f497bf
16 changed files with 75 additions and 40 deletions
+15
View File
@@ -0,0 +1,15 @@
package command
import (
webdav "github.com/owncloud/ocis-webdav/pkg/command"
"github.com/spf13/cobra"
)
// Webdav is the entry point for the webdav command.
func Webdav() *cobra.Command {
cmd := webdav.Server()
cmd.Use = "webdav"
cmd.Short = "Start webdav server"
return cmd
}