paddockpass/graph/main.go
christalib f93210c058 update
2020-07-24 20:17:25 +02:00

9 lines
160 B
Go

package graph
func ConnectToDgraph() (*dgo.Dgraph, error) {
_, err := grpc.Dial("localhost:9080", grpc.WithInsecure())
if err != nil {
log.Fatal(err)
}
}