golang 提供了 go mod命令来管理包
go mod init 初始化生成go.mod 文件
module xxxx
go 1.16
require (
github.com/hashicorp/golang-lru v0.5.4
github.com/stretchr/testify v1.7.0
)
go mod tidy的使用
- 引用项目需要的依赖增加到go.mod文件。
- 去掉go.mod文件中项目不需要的依赖。
下面我们会现场演示这两个作用。
golang 提供了 go mod命令来管理包
module xxxx
go 1.16
require (
github.com/hashicorp/golang-lru v0.5.4
github.com/stretchr/testify v1.7.0
)