mopidy-pummeluff/mopidy_pummeluff/actions/__init__.py
Hayri Bakici 0fd7655011 FEATURE: Add shuffle functionality
Adds the toggling the shuffle functionality.
Solves #16.
2021-04-13 13:41:06 +02:00

24 lines
463 B
Python

'''
Python module for Mopidy Pummeluff tags.
'''
__all__ = (
'PlayPause',
'Stop',
'PreviousTrack',
'NextTrack',
'Shutdown',
'Tracklist',
'ToggleShuffle',
'Volume',
)
from .playback import PlayPause, Stop, PreviousTrack, NextTrack
from .shutdown import Shutdown
from .tracklist import Tracklist, ToggleShuffle
from .volume import Volume
ACTIONS = {}
for action in __all__:
ACTIONS[action] = globals()[action].__doc__.strip()