mirror of
https://github.com/openshift/installer.git
synced 2026-02-06 00:48:45 +01:00
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.
13 lines
125 B
Go
13 lines
125 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package env
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func Getenv(s string) string {
|
|
return os.Getenv(s)
|
|
}
|