Source code for mopidy.audio.constants

from __future__ import unicode_literals


[docs]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'