Gin下载安装遇到的坑
- 报错无法在Goland中编译简单的项目
cannot find module providing package github.com/gin-gonic/gin: working directory is not part of a module
- 解决方案
$ go mod init <your project name>
$ go mod tidy
微信号
cannot find module providing package github.com/gin-gonic/gin: working directory is not part of a module
$ go mod init <your project name>
$ go mod tidy