mirror of
https://github.com/navidrome/navidrome.git
synced 2025-08-10 00:52:20 +00:00
16 lines
315 B
Go
16 lines
315 B
Go
package controllers
|
|
|
|
import "github.com/astaxie/beego"
|
|
|
|
type PingController struct {
|
|
beego.Controller
|
|
}
|
|
|
|
// @router /rest/ping.view [get]
|
|
func (this *PingController) Get() {
|
|
this.Ctx.WriteString("<subsonic-response xmlns=\"http://subsonic.org/restapi\" status=\"ok\" version=\"1.0.0\"></subsonic-response>")
|
|
}
|
|
|
|
|
|
|