Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
8280cb72c965987c79e66a7fe702c1b6f350c775
/
.
/
osutil
/
region.go
blob: 31288dfd1476a2fc35b0ab997a60d5f81d527740 [
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")
}