为了账号安全,请及时绑定邮箱和手机立即绑定

为什么 go get in a repository with go.work throws

为什么 go get in a repository with go.work throws

Go
桃花长相依 2023-02-21 12:41:39
我的目标是创建一个包含多个文件夹的存储库。|- 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相应地更新)


查看完整回答
反对 回复 2023-02-21
  • 1 回答
  • 0 关注
  • 101 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信