bee/testdata/router/router.go

29 lines
253 B
Go
Raw Normal View History

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