我的目标是创建一个包含多个文件夹的存储库。|- go.work|- websocket| |- go.mod| |- go.sum| |- server.go|- channel| |- main.gowebsocket 使用github.com/gorilla/websocket包。所以,我需要在websocket文件夹中做。$ go mod init github.com/kidfrom/learn-golang/websocket$ go get github.com/gorilla/websocket@v1.5.0$ go work use .问题是,websocket/go.mod抛出警告github.com/gorilla/websocket is not used in this module如果我这样做go mod tidy,websocket/go.mod将被清除并websocket/server.go抛出错误could not import github.com/gorilla/websocket (no required module provides package "github.com/gorilla/websocket")TLDRwebsocket/go.modmodule github.com/kidfrom/learn-golang/websocketgo 1.19require github.com/gorilla/websocket v1.5.0 // indirectwebsocket/go.sumgithub.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=websocket/server.gogo.workgo 1.19use ( ./websocket)
1 回答
噜噜哒
TA贡献1784条经验 获得超7个赞
首先,确保您的server.go
内容package main
与原始内容一样gorilla/websocket/examples/echo/server.go
。
其次,测试文件夹的名称(也是) websocket
是否有问题(与websocket.xxx
调用冲突)。
为了测试,尝试更改它(并go.work
相应地更新)
- 1 回答
- 0 关注
- 101 浏览
添加回答
举报
0/150
提交
取消