mirror of
https://github.com/beego/bee.git
synced 2025-06-13 17:00:39 +00:00
change this to short name
This commit is contained in:
8
testdata/router/router.go
vendored
8
testdata/router/router.go
vendored
@ -8,21 +8,21 @@ type Router struct {
|
||||
beego.Controller
|
||||
}
|
||||
|
||||
func (this *Router) Get() {
|
||||
func (r *Router) Get() {
|
||||
|
||||
}
|
||||
|
||||
func (this *Router) Post() {
|
||||
func (r *Router) Post() {
|
||||
|
||||
}
|
||||
|
||||
type Controller struct {
|
||||
}
|
||||
|
||||
func (this *Controller) Put() {
|
||||
func (c *Controller) Put() {
|
||||
|
||||
}
|
||||
|
||||
func (this *Controller) Delete() {
|
||||
func (c *Controller) Delete() {
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user