mirror of
https://github.com/beego/bee.git
synced 2024-11-01 00:00:53 +00:00
29 lines
265 B
Go
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() {
|
||
|
|
||
|
}
|