一 go module 常用命令 模块维护:go mod command arguments创建模块:go mod init example.com/hello清除无用依赖: go mod tidy 测试packages:go test [build/test flags] [packages]测试当前目录*_test.go:go test 运行当前文件夹下的_test.go文件 列出packages或模块:go list [-f format] [-json] [-m] [list flags…