1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-06 00:48:45 +01:00
Files
2024-06-18 10:39:56 +02:00

13 lines
125 B
Go

//go:build !windows
// +build !windows
package env
import (
"os"
)
func Getenv(s string) string {
return os.Getenv(s)
}