func os.Getenv

30 uses

	os (current package)
		env.go#L51: 	return Expand(s, Getenv)
		env.go#L101: func Getenv(key string) string {
		file.go#L414: 		dir = Getenv("LocalAppData")
		file.go#L420: 		dir = Getenv("HOME")
		file.go#L427: 		dir = Getenv("home")
		file.go#L434: 		dir = Getenv("XDG_CACHE_HOME")
		file.go#L436: 			dir = Getenv("HOME")
		file.go#L465: 		dir = Getenv("AppData")
		file.go#L471: 		dir = Getenv("HOME")
		file.go#L478: 		dir = Getenv("home")
		file.go#L485: 		dir = Getenv("XDG_CONFIG_HOME")
		file.go#L487: 			dir = Getenv("HOME")
		file.go#L514: 	if v := Getenv(env); v != "" {
		file_unix.go#L392: 	dir := Getenv("TMPDIR")
		getwd.go#L33: 	dir = Getenv("PWD")

	crypto/x509
		root_unix.go#L36: 	if f := os.Getenv(certFileEnv); f != "" {
		root_unix.go#L53: 	if d := os.Getenv(certDirEnv); d != "" {

	github.com/gotd/td/telegram
		bot.go#L46: 			if _, err := client.Auth().Bot(ctx, os.Getenv("BOT_TOKEN")); err != nil {
		builder.go#L85: 	appID, err := strconv.Atoi(os.Getenv("APP_ID"))
		builder.go#L90: 	appHash := os.Getenv("APP_HASH")

	golang.org/x/net/proxy
		proxy.go#L138: 		e.val = os.Getenv(n)

	golang.org/x/sys/cpu
		cpu.go#L223: 	env := os.Getenv("GODEBUG")

	net
		conf.go#L143: 	if localDomainDefined || os.Getenv("RES_OPTIONS") != "" || os.Getenv("HOSTALIASES") != "" {
		conf.go#L150: 	if runtime.GOOS == "openbsd" && os.Getenv("ASR_CONFIG") != "" {

	net/http
		h2_bundle.go#L3096: var http2DebugGoroutines = os.Getenv("DEBUG_HTTP2_GOROUTINES") == "1"
		h2_bundle.go#L3351: 	e := os.Getenv("GODEBUG")

	vendor/golang.org/x/net/http/httpproxy
		proxy.go#L94: 		CGI:        os.Getenv("REQUEST_METHOD") != "",
		proxy.go#L100: 		if val := os.Getenv(n); val != "" {

	vendor/golang.org/x/sys/cpu
		cpu.go#L220: 	env := os.Getenv("GODEBUG")