Files
opencloud/graph/cmd/graph/main.go
2022-01-03 07:49:24 +01:00

15 lines
221 B
Go

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