feat(types.py): add CLOSE msg ControlAction

This commit is contained in:
2025-11-19 21:23:41 +01:00
parent 332ce3ffa1
commit aa0703fcde

View File

@@ -13,3 +13,4 @@ class Category(str, Enum):
class ControlAction(str, Enum): class ControlAction(str, Enum):
HELLO = "hello" HELLO = "hello"
ACK = "ack" ACK = "ack"
CLOSE = "close"