1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 18:54:13 +00:00

Merge pull request #1688 from ysqi/configIssue

fixed handle config issue
This commit is contained in:
astaxie 2016-03-03 09:50:14 +08:00
commit 4b99e41880

View File

@ -188,7 +188,9 @@ func init() {
return
}
parseConfig(appConfigPath)
if err := parseConfig(appConfigPath); err != nil {
panic(err)
}
}
// now only support ini, next will support json.