diff --git a/mopidy/frontends/mpd/protocol/__init__.py b/mopidy/frontends/mpd/protocol/__init__.py index dc6cfb89..f0b56a57 100644 --- a/mopidy/frontends/mpd/protocol/__init__.py +++ b/mopidy/frontends/mpd/protocol/__init__.py @@ -23,7 +23,10 @@ LINE_TERMINATOR = u'\n' VERSION = u'0.16.0' MpdCommand = namedtuple('MpdCommand', ['name', 'auth_required']) + +#: List of all available commands, represented as :class:`MpdCommand` objects. mpd_commands = set() + request_handlers = {} def handle_request(pattern, auth_required=True):