Quote modules
Complete golang import statement.
Start file
import
encoding/json
fmt
math/rand
net/http
time
github.com/graphql-go/graphql
End file
import (
"encoding/json"
"fmt"
"math/rand"
"net/http"
"time"
"github.com/graphql-go/graphql"
)
View Diff
1,6c1,6
< import
< encoding/json
< fmt
< math/rand
< net/http
< time
---
> import (
> "encoding/json"
> "fmt"
> "math/rand"
> "net/http"
> "time"
8c8,9
< github.com/graphql-go/graphql
---
> "github.com/graphql-go/graphql"
> )
Solutions by @lelandpaul:
Unlock 5 remaining solutions by signing in and submitting your own entry