feat(subsonic): add stub lyrics.view

fixes #274
This commit is contained in:
sentriz
2022-12-26 01:50:42 +00:00
parent 2bf8595d96
commit 0407a1581f
3 changed files with 14 additions and 0 deletions

View File

@@ -407,3 +407,9 @@ func (c *Controller) ServeJukebox(r *http.Request) *spec.Response { // nolint:go
sub.JukeboxStatus = status
return sub
}
func (c *Controller) ServeGetLyrics(r *http.Request) *spec.Response {
sub := spec.NewResponse()
sub.Lyrics = &spec.Lyrics{}
return sub
}