add webdav

This commit is contained in:
A.Unger
2021-03-04 14:37:37 +01:00
parent e8b1665f63
commit 8aed339867
6 changed files with 61 additions and 42 deletions
+2 -1
View File
@@ -4,10 +4,11 @@ import (
"os"
"github.com/owncloud/ocis/webdav/pkg/command"
"github.com/owncloud/ocis/webdav/pkg/config"
)
func main() {
if err := command.Execute(); err != nil {
if err := command.Execute(config.New()); err != nil {
os.Exit(1)
}
}