Renamed receiver names

This commit is contained in:
Deluan
2016-02-25 18:47:25 -05:00
parent 39757f884a
commit a1829d432a
4 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -7,9 +7,9 @@ import (
type GetLicenseController struct{ beego.Controller }
func (this *GetLicenseController) Get() {
func (c *GetLicenseController) Get() {
response := responses.NewXML(&responses.License{Valid: true})
this.Ctx.Output.Body(response)
c.Ctx.Output.Body(response)
}