码迷,mamicode.com
首页 > 其他好文 > 详细

Go mod graphql-go 的 Replace

时间:2020-02-11 00:34:52      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:ack   mono   color   git   graphql   hql   导入   mod   path   

现在在项目中大量的使用 graphql,但用的版本是3年前的版本。

3年前包的url:github.com/neelance/graphql-go

现在的url:github.com/graph-gophers/graphql-go

升级成go mod之后出错了,因为graphql的语法发生了变化。这时候有一个搞笑的问题,你需要找到3年前的那个版本。

github.com/graph-gophers/graphql-go v0.0.0-20170406083916-01ab5128e53e
 
但是3年前的路径是 github.com/neelance/graphql-go,代码里都是这样使用的。
这时候go mod tidy,

go: github.com/graph-gophers/graphql-go imports

github.com/neelance/graphql-go/errors: github.com/neelance/graphql-go@v0.0.0-20200207002730-8334863f2c8b: parsing go.mod:

module declares its path as: github.com/graph-gophers/graphql-go

        but was required as: github.com/neelance/graphql-go

 
好吧 replace 吧
replace github.com/neelance/graphql-go => github.com/graph-gophers/graphql-go v0.0.0-20170406083916-01ab5128e53e

require github.com/neelance/graphql-go v0.0.0-00010101000000-000000000000
如果代码导入错误的,就替换所有的代码

Go mod graphql-go 的 Replace

标签:ack   mono   color   git   graphql   hql   导入   mod   path   

原文地址:https://www.cnblogs.com/view85/p/12293390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!