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

beego hook change the path & fix the migration bug

This commit is contained in:
astaxie
2014-08-13 10:43:05 +08:00
parent d325a66fee
commit 5ecfe0c335
2 changed files with 8 additions and 6 deletions

View File

@ -388,6 +388,9 @@ func initBeforeHttpRun() {
Get("/docs", serverDocs)
Get("/docs/*", serverDocs)
}
//init mime
AddAPPStartHook(initMime)
}
// this function is for test package init
@ -406,6 +409,4 @@ func TestBeegoInit(apppath string) {
func init() {
hooks = make([]hookfunc, 0)
//init mime
AddAPPStartHook(initMime)
}