mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
18 lines
332 B
Go
18 lines
332 B
Go
package api
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"encoding/xml"
|
|
"github.com/deluan/gosonic/api/responses"
|
|
)
|
|
|
|
type PingController struct{ beego.Controller }
|
|
|
|
func (this *PingController) Get() {
|
|
response := responses.NewEmpty()
|
|
xmlBody, _ := xml.Marshal(response)
|
|
this.Ctx.Output.Body([]byte(xml.Header + string(xmlBody)))
|
|
}
|
|
|
|
|
|
|