Get is shorthand for calling the e.Load(), and then returning `e.env.GetAll(key)`.
(key string)
| 25 | // Get is shorthand for calling the e.Load(), and then returning |
| 26 | // `e.env.GetAll(key)`. |
| 27 | func (e *delayedEnvironment) GetAll(key string) []string { |
| 28 | e.Load() |
| 29 | return e.env.GetAll(key) |
| 30 | } |
| 31 | |
| 32 | // Get is shorthand for calling the e.Load(), and then returning |
| 33 | // `e.env.Bool(key, def)`. |