1
0
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:
astaxie
2014-11-05 22:48:09 +08:00
parent 930049f7de
commit 976602bc01
5 changed files with 80 additions and 80 deletions

View File

@ -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() {
}