1
0
mirror of https://github.com/beego/bee.git synced 2025-01-11 13:37:11 +00:00
bee/testdata/router/router.go

29 lines
253 B
Go
Raw Normal View History

2013-07-27 09:44:44 +08:00
package router
import (
"github.com/astaxie/beego"
)
type Router struct {
beego.Controller
}
2014-11-05 22:48:09 +08:00
func (r *Router) Get() {
2013-07-27 09:44:44 +08:00
}
2014-11-05 22:48:09 +08:00
func (r *Router) Post() {
2013-07-27 09:44:44 +08:00
}
type Controller struct {
}
2014-11-05 22:48:09 +08:00
func (c *Controller) Put() {
2013-07-27 09:44:44 +08:00
}
2014-11-05 22:48:09 +08:00
func (c *Controller) Delete() {
2013-07-27 09:44:44 +08:00
}