Obvious env helper methods Simple environment variable helper library How to Use Installation go get github.com/go-obvious/env Example Usage package main import ( "fmt" "github.com/go-obvious/env" ) func main() { value := env.GetOr("MY_VARIABLE", "nothing") fmt.Println("Got:", value) }