beginning of work to save queue to server

This commit is contained in:
Drew Weymouth
2024-04-16 17:26:46 -07:00
parent e99c867a39
commit 98a140791b
5 changed files with 39 additions and 7 deletions
+5
View File
@@ -258,6 +258,11 @@ type SupportsSharing interface {
CanShareArtists() bool
}
type CanSavePlayQueue interface {
SavePlayQueue(trackIDs []string, currentTrackPos int, timeSeconds int) error
GetPlayQueue() (*SavedPlayQueue, error)
}
type LyricsProvider interface {
GetLyrics(track *Track) (*Lyrics, error)
}