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
Error signature refactoring (#6)
- Refactors to a `val, err := Get("ENV")` based signature
- Changes most functions to a `val, err` signature to match this
- Breaks code into functional files for sanity
- Provides `Get` alias `GetString` for convention
- Renames `GetSlice` to `GetStringSlice` and supports more types
- Adds support for multiple `default` slice values through `default=[one,two,three]`
- Does not require the brackets if there is only 1 default item.