LoadConfiguration reads a filename (fullpath) and returns a Configuration binded to the contents of the given filename. See Configuration.BindFile method too.
(filename string)
| 207 | // and returns a Configuration binded to the contents of the given filename. |
| 208 | // See Configuration.BindFile method too. |
| 209 | func LoadConfiguration(filename string) (c Configuration, err error) { |
| 210 | err = c.BindFile(filename) |
| 211 | return |
| 212 | } |
no test coverage detected
searching dependent graphs…