Initial commit.
This commit is contained in:
commit
d58b5b94d3
19 changed files with 439 additions and 0 deletions
27
mopidy_subidy/playlists.py
Normal file
27
mopidy_subidy/playlists.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
from mopidy import backend
|
||||
|
||||
class SubidyPlaylistsProvider(backend.PlaylistsProvider):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(SubidyPlaylistsProvider, self).__init__(*args, **kwargs)
|
||||
self.playlists = []
|
||||
|
||||
def as_list(self):
|
||||
pass
|
||||
|
||||
def create(self, name):
|
||||
pass
|
||||
|
||||
def delete(self, uri):
|
||||
pass
|
||||
|
||||
def get_items(self, uri):
|
||||
pass
|
||||
|
||||
def lookup(self, uri):
|
||||
pass
|
||||
|
||||
def refresh(self):
|
||||
pass
|
||||
|
||||
def save(self, playlist):
|
||||
pass
|
Loading…
Add table
Add a link
Reference in a new issue