Document mopidy.frontends.mpd.protoocol.mpd_commands as a part of the MPD frontend API

This commit is contained in:
Stein Magnus Jodal 2011-06-04 19:20:53 +02:00
parent 3ac987ee47
commit c52d5c9388

View File

@ -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):