mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-12 21:32:17 +03:00
13 lines
237 B
Go
13 lines
237 B
Go
package api
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"github.com/deluan/gosonic/api/responses"
|
|
)
|
|
|
|
type PingController struct{ beego.Controller }
|
|
|
|
func (c *PingController) Get() {
|
|
c.Ctx.Output.Body(responses.ToXML(responses.NewEmpty()))
|
|
}
|