GoLang 解决VsCode中提示错误 go: cannot find main module, but found .git/config in D:\XXX\src\XXX to create a module there, run: cd .. && go mod init
解决方案1:
在项目的根目录下使用如下命令:
go mod init
(↑ 此命令可能会导致,在使用VsCode保存编辑时产生巨量的卡顿现象,CPU占用过高的情况)
解决方案2:
在Windows PowerShell 中输入如下命令:
go env -w GO111MODULE=off
时间若流水,恍惚间逝去