mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-09 18:00:38 -04:00
11 lines
105 B
Go
11 lines
105 B
Go
// +build !windows
|
|
|
|
package env
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func Getenv(s string) string {
|
|
return os.Getenv(s)
|
|
}
|