Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
2285a429874c1365ef6c6d3ceb08b1d428e26aca
/
.
/
osutil
/
region.go
blob: f7df507e5530777604c9623bda548ca57f400a02 [
file
] [
log
] [
blame
]
package osutil
import "os"
// Region provides a means of querying the OS_REGION_NAME environment variable.
// At present, you may also use os.Getenv("OS_REGION_NAME") as well.
func Region() string {
return os.Getenv("OS_REGION_NAME")
}