From fc423146cf7f63378c22b3e8e4b1fb23f4fafe06 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Tue, 24 Aug 2010 01:29:24 +0200 Subject: [PATCH] Add LastfmFrontend --- mopidy/frontends/lastfm.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 mopidy/frontends/lastfm.py diff --git a/mopidy/frontends/lastfm.py b/mopidy/frontends/lastfm.py new file mode 100644 index 00000000..411eef60 --- /dev/null +++ b/mopidy/frontends/lastfm.py @@ -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