mirror of
https://github.com/hashicorp/vault.git
synced 2026-04-23 15:18:41 -04:00
| .. | ||
| env.go | ||
| README.md | ||
ory-libs/env
Adds defaults to os.GetEnv() and saves you 3 lines of code:
import "github.com/ory-am/common/env"
func main() {
port := env.Getenv("PORT", "80")
}
versus
import "os"
func main() {
port := os.Getenv("PORT")
if port == "" {
port = "80"
}
}