You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
import"github.com/lestrrat-go/env"env.SetPrefix("MYAPP")value,ok:=env.Lookup("FOO")// looks up MYAPP_FOOenv.Value("FOO","defaultValue")// return defaultValue if MYAPP_FOO is not setenv.SetValue("FOO","newValue")// set MYAPP_FOO