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

beego:fix typo NewControllerRegister

This commit is contained in:
astaxie
2014-06-10 20:12:57 +08:00
parent fdb5672b7a
commit 4786fb0948
6 changed files with 26 additions and 26 deletions

2
app.go
View File

@ -27,7 +27,7 @@ type App struct {
// NewApp returns a new beego application.
func NewApp() *App {
cr := NewControllerRegistor()
cr := NewControllerRegister()
app := &App{Handlers: cr, Server: &http.Server{}}
return app
}