Files
opencloud/graph-explorer/cmd/graph-explorer/main.go
2022-03-10 14:12:26 +01:00

15 lines
250 B
Go

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