Get is shorthand for calling the e.Load(), and then returning `e.env.Get(key)`.
(key string)
| 18 | // Get is shorthand for calling the e.Load(), and then returning |
| 19 | // `e.env.Get(key)`. |
| 20 | func (e *delayedEnvironment) Get(key string) (string, bool) { |
| 21 | e.Load() |
| 22 | return e.env.Get(key) |
| 23 | } |
| 24 | |
| 25 | // Get is shorthand for calling the e.Load(), and then returning |
| 26 | // `e.env.GetAll(key)`. |