Use this mirror to speed up and pin Go module downloads.
Endpoint: https://mirror.ompfinex.team/go
# Use the OMPFinex proxy, fall back to direct
export GOPROXY=https://mirror.ompfinex.team/go,direct
# (optional) bypass proxy for private repositories
export GOPRIVATE=git.mycompany.com,github.com/my/private
# Use the OMPFinex proxy, fall back to direct
$env:GOPROXY = "https://mirror.ompfinex.team/go,direct"
# (optional) bypass proxy for private repositories
$env:GOPRIVATE = "git.mycompany.com,github.com/my/private"
You can make these settings permanent in ~/.bashrc, ~/.profile or
your PowerShell profile. If you’re on Go < 1.13, consider
upgrading for full module support.