# golang **Repository Path**: yangli2020/golang ## Basic Information - **Project Name**: golang - **Description**: Golang Example & Best Practice - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2021-11-10 - **Last Updated**: 2021-11-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Golang It's userful example for golang best practice. # Path It's useful to mkdir `~/.go` as `gopath` for install package and tools, Don't forget add `~/.go/bin` to $PATH. # Proxy ``` go env -w GOPROXY="https://goproxy.cn,direct" go env -w GONOPROXY="gitlab.company.com,gitee.com" go env -w GONOSUMDB="gitlab.company.com" ```