8 lines
119 B
Python
8 lines
119 B
Python
from enum import Enum
|
|
|
|
|
|
class PlayerState(Enum):
|
|
PLAYING = "playing"
|
|
PAUSED = "paused"
|
|
STOPPED = "stopped"
|