add LyricsProvider / GetLyrics

This commit is contained in:
Drew Weymouth
2024-03-05 08:53:57 -08:00
parent a3449d22ff
commit ea1d78ed58
3 changed files with 64 additions and 0 deletions
+4
View File
@@ -154,6 +154,10 @@ type SupportsSharing interface {
CanShareArtists() bool
}
type LyricsProvider interface {
GetLyrics(track *Track) (*Lyrics, error)
}
type JukeboxProvider interface {
JukeboxStart() error
JukeboxStop() error