1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 00:43:27 +00:00

modify the init code

This commit is contained in:
xiemengjun 2013-01-01 23:16:29 +08:00
parent 257e25bbc1
commit 43a508309b

View File

@ -120,8 +120,8 @@ import (
)
func main() {
beego.BeeApp.RegisterController("/", &controllers.MainController{})
beego.BeeApp.Run()
beego.RegisterController("/", &controllers.MainController{})
beego.Run()
}
`