1
0
mirror of https://github.com/beego/bee.git synced 2025-06-12 15:10:39 +00:00

Added func getControllerInfo

This commit is contained in:
Unknown
2013-07-27 09:44:44 +08:00
parent 422e2dc737
commit 7ea67b5534
8 changed files with 622 additions and 8 deletions

28
testdata/router/router.go vendored Normal file
View File

@ -0,0 +1,28 @@
package router
import (
"github.com/astaxie/beego"
)
type Router struct {
beego.Controller
}
func (this *Router) Get() {
}
func (this *Router) Post() {
}
type Controller struct {
}
func (this *Controller) Put() {
}
func (this *Controller) Delete() {
}