启用 Go Modules 功能
export GO111MODULE=on
# 配置 GOPROXY 环境变量
export GOPROXY=https://goproxy.io
go mod init [module name]()模块名称 创建go.mod 文件
go test 自动生成依赖包 require 语句
私有包需要手动添加,且引入的私有包也需要go.mod文件
replace dbredis v0.0.0 => ./dbredis(私有包 默认版本号 v0.0.0=> 相对路径)
go mod tidy 自动添加需要的依赖、删除不需要的依赖
go mod edit -fmt 格式化go.mod文件
go mod vendor 生成vendor包