This commit is contained in:
A.Unger
2021-03-04 13:10:18 +01:00
parent 08e3eea6b7
commit 7eea714633
8 changed files with 47 additions and 18 deletions
+2 -1
View File
@@ -4,10 +4,11 @@ import (
"os"
"github.com/owncloud/ocis/idp/pkg/command"
"github.com/owncloud/ocis/idp/pkg/config"
)
func main() {
if err := command.Execute(); err != nil {
if err := command.Execute(config.New()); err != nil {
os.Exit(1)
}
}