File: env.go

package info (click to toggle)
golang-github-gophercloud-utils 0.0~git20231010.80377ec-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 816 kB
  • sloc: sh: 20; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 125 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
//go:build !windows
// +build !windows

package env

import (
	"os"
)

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