mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-28 21:01:16 -04:00
12 lines
105 B
Go
12 lines
105 B
Go
// +build !windows
|
|
|
|
package env
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func Getenv(s string) string {
|
|
return os.Getenv(s)
|
|
}
|