Files
mopidy-radionet/venv/lib/python3.7/site-packages/mopidy/audio/constants.py
2020-01-18 20:01:00 +01:00

15 lines
283 B
Python

class PlaybackState:
"""
Enum of playback states.
"""
#: Constant representing the paused state.
PAUSED = "paused"
#: Constant representing the playing state.
PLAYING = "playing"
#: Constant representing the stopped state.
STOPPED = "stopped"