Files
QSfera/graph-explorer/cmd/graph-explorer/main.go
T
2021-02-04 12:23:11 +01:00

14 lines
163 B
Go

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