This repository has been archived on 2026-04-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
watch-together-yandex-disk/rooms/state.py
T
2025-07-20 00:51:55 +03:00

8 lines
119 B
Python

from enum import Enum
class PlayerState(Enum):
PLAYING = "playing"
PAUSED = "paused"
STOPPED = "stopped"