21 lines
445 B
Python
21 lines
445 B
Python
from mopidy.backends.base import BaseStoredPlaylistsController
|
|
|
|
class LibspotifyStoredPlaylistsController(BaseStoredPlaylistsController):
|
|
def create(self, name):
|
|
pass # TODO
|
|
|
|
def delete(self, playlist):
|
|
pass # TODO
|
|
|
|
def lookup(self, uri):
|
|
pass # TODO
|
|
|
|
def refresh(self):
|
|
pass # TODO
|
|
|
|
def rename(self, playlist, new_name):
|
|
pass # TODO
|
|
|
|
def save(self, playlist):
|
|
pass # TODO
|