Refactored responses

This commit is contained in:
Deluan
2016-03-02 11:11:46 -05:00
parent 77e3aa7620
commit 01c68d6802
9 changed files with 64 additions and 69 deletions
+1 -4
View File
@@ -1,7 +1,6 @@
package api
import (
"encoding/xml"
"github.com/astaxie/beego"
"github.com/deluan/gosonic/api/responses"
)
@@ -9,7 +8,5 @@ import (
type PingController struct{ beego.Controller }
func (c *PingController) Get() {
response := responses.NewEmpty()
xmlBody, _ := xml.Marshal(response)
c.Ctx.Output.Body([]byte(xml.Header + string(xmlBody)))
c.Ctx.Output.Body(responses.ToXML(responses.NewEmpty()))
}