initial commit

This commit is contained in:
2025-07-20 00:51:55 +03:00
commit 42684e0cb6
29 changed files with 2615 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from enum import Enum
class PlayerState(Enum):
PLAYING = "playing"
PAUSED = "paused"
STOPPED = "stopped"