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:
28
testdata/router/router.go
vendored
Normal file
28
testdata/router/router.go
vendored
Normal 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() {
|
||||
|
||||
}
|
Reference in New Issue
Block a user