feat: add REVA appauth as oCIS service

This commit is contained in:
Thomas Müller
2024-07-23 08:58:07 +02:00
committed by jkoberg
parent 43403edfb8
commit 1eb66eb18c
21 changed files with 696 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
package main
import (
"os"
"github.com/owncloud/ocis/v2/services/auth-app/pkg/command"
"github.com/owncloud/ocis/v2/services/auth-app/pkg/config/defaults"
)
func main() {
if err := command.Execute(defaults.DefaultConfig()); err != nil {
os.Exit(1)
}
}