Quote modules (ver.2)
Complete golang import statement.
Start file
import
log
net/http
graphql github.com/graph-gophers/graphql-go
github.com/graph-gophers/graphql-go/relay
End file
import (
"log"
"net/http"
graphql "github.com/graph-gophers/graphql-go"
"github.com/graph-gophers/graphql-go/relay"
)
View Diff
1,3c1,3
< import
< log
< net/http
---
> import (
> "log"
> "net/http"
5,6c5,7
< graphql github.com/graph-gophers/graphql-go
< github.com/graph-gophers/graphql-go/relay
---
> graphql "github.com/graph-gophers/graphql-go"
> "github.com/graph-gophers/graphql-go/relay"
> )
Solutions by @swarajdash_:
Unlock 2 remaining solutions by signing in and submitting your own entry