mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
17 lines
386 B
Go
17 lines
386 B
Go
package subsonic
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/navidrome/navidrome/server/subsonic/responses"
|
|
)
|
|
|
|
func (api *Router) Ping(_ *http.Request) (*responses.Subsonic, error) {
|
|
return newResponse(), nil
|
|
}
|
|
|
|
func (api *Router) GetLicense(_ *http.Request) (*responses.Subsonic, error) {
|
|
response := newResponse()
|
|
response.License = &responses.License{Valid: true}
|
|
return response, nil
|
|
}
|