mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-21 18:28:27 -05:00
6234064707
Signed-off-by: David Christofas <dchristofas@owncloud.com>
14 lines
155 B
Go
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)
|
|
}
|
|
}
|