mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-29 01:41:36 +03:00
8 lines
127 B
Go
8 lines
127 B
Go
package api
|
|
|
|
type PingController struct{ BaseAPIController }
|
|
|
|
func (c *PingController) Get() {
|
|
c.SendResponse(c.NewEmpty())
|
|
}
|