Add 'glauth/' from commit '0735ec933777cb5fd1427c5311dcb6712def476d'

git-subtree-dir: glauth
git-subtree-mainline: d6733b47cc
git-subtree-split: 0735ec9337
This commit is contained in:
A.Unger
2020-09-18 12:45:18 +02:00
61 changed files with 5333 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
"os"
"github.com/owncloud/ocis-glauth/pkg/command"
)
func main() {
if err := command.Execute(); err != nil {
os.Exit(1)
}
}