切换源
go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.io,direct
https://blog.csdn.net/u014381782/article/details/106361780/
安装扩展
go mod vendor
cannot find module providing package github.com/gin-gonic/gin: 安装gin后找不到gin包
go mod init gin go mod edit -require github.com/gin-gonic/gin@latest
go编译报go: cannot find main module; see 'go help modules'
https://blog.csdn.net/yuexiazhufeng/article/details/84570680
Go 语言中 = 和 := 有什么区别
= 是赋值, := 是声明变量并赋值。
// = 使用必须使用先var声明例如: var a a=100 //或 var b = 100 //或 var c int = 100 // := 是声明并赋值,并且系统自动推断类型,不需要var关键字 d := 100