mopidy/mopidy/audio/constants.py
2014-12-07 20:17:10 +01:00

17 lines
349 B
Python

from __future__ import absolute_import, unicode_literals
class PlaybackState(object):
"""
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'