1 Star 0 Fork 0

ckbabby / goutil

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
get.go 204 Bytes
一键复制 编辑 原始数据 按行查看 历史
inhere 提交于 2019-08-03 21:49 . format some codes
package envutil
import "os"
// Getenv get ENV value by key name
func Getenv(name string, def ...string) string {
val := os.Getenv(name)
if val == "" && len(def) > 0 {
val = def[0]
}
return val
}
Go
1
https://gitee.com/ckbabby/goutil.git
git@gitee.com:ckbabby/goutil.git
ckbabby
goutil
goutil
754e97ac523d

搜索帮助

53164aa7 5694891 3bd8fe86 5694891