The golang-package for working with configuration json files
go get github.com/toolsparty/jconf
// ...config, err:=NewConfig("./config.json")
iferr!=nil {
panic(err)
}
name, err:=config.Get("name")
iferr!=nil {
panic(err)
}
// ...There was an error while loading. Please reload this page.