Add better connection management

This commit is contained in:
Alex Wolden
2025-06-30 15:50:59 -07:00
parent 73e896737a
commit dabc3437dd
9 changed files with 370 additions and 31 deletions

View File

@@ -40,6 +40,10 @@ class EventType(Enum):
# Command response types
OK = "command_ok"
ERROR = "command_error"
# Connection events
CONNECTED = "connected"
DISCONNECTED = "disconnected"
@dataclass