suture runtime v1

This commit is contained in:
A.Unger
2021-03-03 15:05:21 +01:00
parent a31dd155fd
commit 98dd9a970f
7 changed files with 72 additions and 22 deletions
+2 -1
View File
@@ -4,10 +4,11 @@ import (
"os"
"github.com/owncloud/ocis/settings/pkg/command"
"github.com/owncloud/ocis/settings/pkg/config"
)
func main() {
if err := command.Execute(); err != nil {
if err := command.Execute(config.New()); err != nil {
os.Exit(1)
}
}