Add LastfmFrontend
This commit is contained in:
parent
556e6ba4d9
commit
fc423146cf
14
mopidy/frontends/lastfm.py
Normal file
14
mopidy/frontends/lastfm.py
Normal file
@ -0,0 +1,14 @@
|
||||
from mopidy.frontends.base import BaseFrontend
|
||||
|
||||
class LastfmFrontend(BaseFrontend):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(LastfmFrontend, self).__init__(*args, **kwargs)
|
||||
|
||||
def start(self):
|
||||
pass
|
||||
|
||||
def destroy(self):
|
||||
pass
|
||||
|
||||
def process_message(self, message):
|
||||
pass
|
||||
Loading…
Reference in New Issue
Block a user