(c *Config, alias, key string)
| 107 | } |
| 108 | |
| 109 | func findAll(c *Config, alias, key string) ([]string, error) { |
| 110 | if c == nil { |
| 111 | return nil, nil |
| 112 | } |
| 113 | return c.GetAll(alias, key) |
| 114 | } |
| 115 | |
| 116 | // Get finds the first value for key within a declaration that matches the |
| 117 | // alias. Get returns the empty string if no value was found, or if IgnoreErrors |