From aa0703fcde9d531fc5eaf8d9c93b160422692387 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Wed, 19 Nov 2025 21:23:41 +0100 Subject: [PATCH] feat(types.py): add `CLOSE` msg ControlAction --- src/judas_protocol/types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/judas_protocol/types.py b/src/judas_protocol/types.py index 0d0b412..9b353dc 100644 --- a/src/judas_protocol/types.py +++ b/src/judas_protocol/types.py @@ -13,3 +13,4 @@ class Category(str, Enum): class ControlAction(str, Enum): HELLO = "hello" ACK = "ack" + CLOSE = "close"