Documentation ¶
Overview ¶
package envy makes working with ENV variables in Go trivial.
* Get ENV variables with default values. * Set ENV variables safely without affecting the underlying system. * Temporarily change ENV vars; useful for testing. * Map all of the key/values in the ENV. * Loads .env files (by using godotenv(https://github.com/joho/godotenv/)) * More!
Index ¶
- Constants
- func CurrentModule() (string, error)
- func Environ() []string
- func Get(key string, value string) string
- func GoBin() string
- func GoPath() string
- func GoPaths() []string
- func InGoPath() bool
- func Load(files ...string) error
- func Map() map[string]string
- func MustGet(key string) (string, error)
- func MustSet(key string, value string) error
- func Reload()
- func Set(key string, value string)
- func Temp(f func())
Constants ¶
const GO111MODULE = "GO111MODULE"
GO111MODULE is ENV for turning mods on/off
const Version = "v1.10.1"
Variables ¶
This section is empty.
Functions ¶
func CurrentModule ¶ added in v1.6.10
CurrentModule will attempt to return the module name from `go.mod`. GOPATH isn't supported, no fallback to `CurrentPackage()` anymore.
func Load ¶
Load .env files. Files will be loaded in the same order that are received. Redefined vars will override previously existing values. IE: envy.Load(".env", "test_env/.env") will result in DIR=test_env If no arg passed, it will try to load a .env file.
func MustSet ¶
MustSet the value into the underlying ENV, as well as envy. This may return an error if there is a problem setting the underlying ENV value.
func Reload ¶
func Reload()
Reload the ENV variables. Useful if an external ENV manager has been used
func Set ¶
Set a value into the ENV. This is NOT permanent. It will only affect values accessed through envy.
func Temp ¶
func Temp(f func())
Temp makes a copy of the values and allows operation on those values temporarily during the run of the function. At the end of the function run the copy is discarded and the original values are replaced. This is useful for testing. Warning: This function is NOT safe to use from a goroutine or from code which may access any Get or Set function from a goroutine
Types ¶
This section is empty.