andeya / faygo

Faygo is a fast and concise Go Web framework that can be used to develop high-performance web app(especially API) with fewer codes. Just define a struct handler, faygo will automatically bind/verify the request parameters and generate the online API doc.

Home Page:https://github.com/henrylee2cn/faydoc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

用了go mod去管理包,但是因为xorm的core已经变更为xorm.io,所以会报以下错误。

yiptsangkin opened this issue · comments

go: github.com/go-xorm/core@v0.6.3: parsing go.mod: unexpected module path "xorm.io/core"

在go mod 中增加了这个的话,会报这个错误

replace github.com/go-xorm/core v0.6.3 => xorm.io/core v0.6.3

go: xorm.io/core@v0.6.3 used for two different module paths (github.com/go-xorm/core and xorm.io/core)

目前可以通过修改版本,但是又会引发另外一个错误

image

希望作者有空更新下ext里面的db插件

I have the same problem, how to solve this problem

Updated code, has been fixed