1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-06 00:48:45 +01:00
Files
Pierre Prinetti a6d7a4b29e openstack: Revert Gophercloud workaround
With the bump to Gophercloud v1.1.1, the library should be able to
handle HTTP status 204 responses without `content-type` without
erroring. The workaround that was in place to force contentful responses
can then be removed.
2022-12-21 17:46:09 +01:00

13 lines
125 B
Go

//go:build !windows
// +build !windows
package env
import (
"os"
)
func Getenv(s string) string {
return os.Getenv(s)
}