navidrome/api/ping.go
2016-02-25 18:52:07 -05:00

16 lines
323 B
Go

package api
import (
"encoding/xml"
"github.com/astaxie/beego"
"github.com/deluan/gosonic/api/responses"
)
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)))
}