1
0
mirror of https://github.com/beego/bee.git synced 2024-06-01 09:13:27 +00:00
bee/testdata/router/router.go
2014-11-05 22:48:09 +08:00

29 lines
253 B
Go

package router
import (
"github.com/astaxie/beego"
)
type Router struct {
beego.Controller
}
func (r *Router) Get() {
}
func (r *Router) Post() {
}
type Controller struct {
}
func (c *Controller) Put() {
}
func (c *Controller) Delete() {
}