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

panic parse config error

This commit is contained in:
ysqi 2016-02-14 18:54:40 +08:00
parent 2b23764ee0
commit d5f07d65bb

View File

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