Initial commit.

This commit is contained in:
Frederick Gnodtke 2016-09-18 04:33:46 +02:00
commit d58b5b94d3
19 changed files with 439 additions and 0 deletions

View 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