Files
opencloud/glauth/cmd/ocis-glauth/main.go
2020-09-18 12:46:58 +02:00

14 lines
155 B
Go

package main
import (
"os"
"github.com/owncloud/ocis/glauth/pkg/command"
)
func main() {
if err := command.Execute(); err != nil {
os.Exit(1)
}
}