💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# go moudles go mod init 生成go.mod文件 go mod download 下载go.mod文件中指明的所有依赖 go mod tidy 整理现有的依赖 go mod edit 编辑go.mod文件 go mod vendor 导出项目所有的依赖到vendor 目录 go mod verify 校验一个模块是否被篡改过 go mod why 查看为什么需要某模块 go env | grep GOPROXY 查看当前的模块镜像地址 GOPROXY="<https://goproxy.cn/,https://mirrors.aliyun.com/goproxy/>" go env -w GOPROXY="<https://goproxy.cn/,https://mirrors.aliyun.com/goproxy/>" go get -u [github.com/gin-gonic/gin](http://github.com/gin-gonic/gin) import "[github.com/gin-gonic/gin](http://github.com/gin-gonic/gin)" go get [github.com/pilu/fresh](http://github.com/pilu/fresh) ### gopath goroot gomod ## goroot golang的安装路径 ## gopath \* GOPATH:GOPATH是我们的工作空间,保存go项目代码和第三方依赖包