1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-12 12:10:38 +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

View File

@ -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.