mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-20 15:01:40 -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)
|
|
}
|