Graphql-go: go get error with go version go1.10rc2 linux/amd64

Created on 26 Mar 2018  路  1Comment  路  Source: graph-gophers/graphql-go

There might be an issue with the current master branch for Go 1.10

$ go get -u github.com/neelance/graphql-go                                                                                                                                                                                        
../../../github.com/neelance/graphql-go/graphql.go:10:2: use of internal package not allowed
../../../github.com/neelance/graphql-go/graphql.go:11:2: use of internal package not allowed
../../../github.com/neelance/graphql-go/graphql.go:12:2: use of internal package not allowed
../../../github.com/neelance/graphql-go/graphql.go:13:2: use of internal package not allowed
../../../github.com/neelance/graphql-go/graphql.go:14:2: use of internal package not allowed
../../../github.com/neelance/graphql-go/graphql.go:15:2: use of internal package not allowed
../../../github.com/neelance/graphql-go/graphql.go:16:2: use of internal package not allowed
$ go version                                                                                                                                                                                                                     
go version go1.10rc2 linux/amd64

Most helpful comment

The import path has changed to github.com/graph-gophers/graphql-go, so you should do:

go get -u github.com/graph-gophers/graphql-go

You can read more about it in the README's Status section.

(BTW, the final version of Go 1.10 is released by now.)

>All comments

The import path has changed to github.com/graph-gophers/graphql-go, so you should do:

go get -u github.com/graph-gophers/graphql-go

You can read more about it in the README's Status section.

(BTW, the final version of Go 1.10 is released by now.)

Was this page helpful?
0 / 5 - 0 ratings

Related issues

CreatCodeBuild picture CreatCodeBuild  路  4Comments

linuxmonk picture linuxmonk  路  3Comments

rogchap picture rogchap  路  5Comments

thewillhuang picture thewillhuang  路  5Comments

Melaninneal picture Melaninneal  路  5Comments