1
0
mirror of https://github.com/beego/bee.git synced 2024-06-01 19:33:28 +00:00
bee/testdata/router/router.go
2013-07-27 09:44:44 +08:00

29 lines
265 B
Go

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() {
}