1# This file contains the initial defaults for go command configuration. 2# Values set by 'go env -w' and written to the user's go/env file override these. 3# The environment overrides everything else. 4 5# Use the Go module mirror and checksum database by default. 6# See https://proxy.golang.org for details. 7GOPROXY=https://proxy.golang.org,direct 8GOSUMDB=sum.golang.org 9 10# Automatically download newer toolchains as directed by go.mod files. 11# See https://go.dev/doc/toolchain for details. 12GOTOOLCHAIN=auto 13