configure icon indicating copy to clipboard operation
configure copied to clipboard

Update readme: Call to configure.ParseYAML() is missing data argument

Open MaKleSoft opened this issue 9 years ago • 0 comments

err = configure.ParseYAML(&cfg)

should be

// load config file
data, _ := ioutil.ReadFile("config.yaml")
err = configure.ParseYAML(data, &cfg)

MaKleSoft avatar Aug 13 '16 12:08 MaKleSoft