mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-03 02:39:52 -06:00
16 lines
287 B
Go
16 lines
287 B
Go
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
|
|
}
|