OpenMix 出品:https://openmix.org
基于 GoDotEnv 开发的具有类型转换功能的环境配置库
Based on GoDotEnv library, with type conversion function
go get github.com/mix-go/dotenv
载入 .env
到环境变量
_ = dotenv.Load(".env")
获取环境变量
i := dotenv.Getenv("key").String()
i := dotenv.Getenv("key").Bool()
i := dotenv.Getenv("key").Int64()
i := dotenv.Getenv("key").Float64()
设置默认值
i := dotenv.Getenv("key").String("default")
i := dotenv.Getenv("key").Bool(false)
i := dotenv.Getenv("key").Int64(123)
i := dotenv.Getenv("key").Float64(123.4)
Apache License Version 2.0, http://www.apache.org/licenses/