mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
19 lines
381 B
Go
19 lines
381 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"encoding/xml"
|
|
"github.com/deluan/gosonic/controllers/responses"
|
|
)
|
|
|
|
type PingController struct{ beego.Controller }
|
|
|
|
// @router /rest/ping.view [get]
|
|
func (this *PingController) Get() {
|
|
response := responses.NewEmpty()
|
|
xmlBody, _ := xml.Marshal(response)
|
|
this.Ctx.Output.Body([]byte(xml.Header + string(xmlBody)))
|
|
}
|
|
|
|
|
|
|