🎈

Golang使用说明

流程

  1. 新建项目 选择 Gopath那一列
    1. notion image
  1. cmd中输入 go mod init xxx.com/xxxx(自己定义github路径)
  1. go mod tidy 完成初始化
 

设置代理

 
go env -w GOPROXY=https://goproxy.cn,direct go env -w GO111MODULE=on
并且要勾选这个
 
notion image