File: env.go

package info (click to toggle)
golang-github-gophercloud-utils 0.0~git20200508.b0167b9-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 784 kB
  • sloc: sh: 20; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 105 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
// +build !windows

package env

import (
	"os"
)

func Getenv(s string) string {
	return os.Getenv(s)
}