blob: f7df507e5530777604c9623bda548ca57f400a02 [file] [log] [blame]
Samuel A. Falvo II8280cb72014-01-06 15:06:53 -08001package osutil
2
3import "os"
4
5// Region provides a means of querying the OS_REGION_NAME environment variable.
6// At present, you may also use os.Getenv("OS_REGION_NAME") as well.
7func Region() string {
8 return os.Getenv("OS_REGION_NAME")
9}