mirror of
https://github.com/openshift/installer.git
synced 2026-02-06 00:48:45 +01:00
13 lines
125 B
Go
13 lines
125 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package env
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func Getenv(s string) string {
|
|
return os.Getenv(s)
|
|
}
|