21 lines
392 B
Python
21 lines
392 B
Python
from __future__ import unicode_literals
|
|
|
|
from mopidy.backends import base
|
|
|
|
|
|
class SpotifyStoredPlaylistsProvider(base.BaseStoredPlaylistsProvider):
|
|
def create(self, name):
|
|
pass # TODO
|
|
|
|
def delete(self, uri):
|
|
pass # TODO
|
|
|
|
def lookup(self, uri):
|
|
pass # TODO
|
|
|
|
def refresh(self):
|
|
pass # TODO
|
|
|
|
def save(self, playlist):
|
|
pass # TODO
|