Add add method to BaseCurrentPlaylistController
This commit is contained in:
parent
c9c0a23956
commit
da8efb34fe
@ -17,6 +17,9 @@ class BaseCurrentPlaylistController(object):
|
||||
def __init__(self, backend):
|
||||
self.backend = backend
|
||||
|
||||
def add(self, track, at_position=None):
|
||||
raise NotImplementedError
|
||||
|
||||
class BasePlaybackController(object):
|
||||
PAUSED = 'paused'
|
||||
PLAYING = 'playing'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user