I am trying to import github.com/dgraph-io/dgo
and google.golang.org/grpc
in my Go
code.
But when I save the file it gets removed.
This is how I am trying :
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"google.golang.org/grpc"
"github.com/dgraph-io/dgo"
)
I tried to get github.com/dgraph-io/dgo
package using command go get github.com/dgraph-io/dgo
Can anyone please help what is prerequisite to use given packages.
My aim is to use Dgraph
queries and Mutations in Go