kelseyhightower / envconfig

Golang library for managing configuration data from environment variables
MIT License
5.01k stars 377 forks source link

feat: support optional trim #196

Open fernandodr19 opened 3 years ago

fernandodr19 commented 3 years ago

Implementation of issue https://github.com/kelseyhightower/envconfig/issues/195

Adds an optional tag to trim env configs

type config struct {
    MyPass string `envconfig:"MY_PASS" trim:"true"`
}