1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-19 10:30:40 +00:00

Merge pull request from ysqi/configIssue

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

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