feat(types.py): add types.py

This commit is contained in:
2025-08-28 13:07:17 +02:00
parent 4cf669c373
commit 5e3ed0fe0f

View File

@@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
"""Types used in the judas protocol."""
from __future__ import annotations
from enum import Enum
class Category(str, Enum):
CONTROL = "control"
class ControlAction(str, Enum):
HELLO = "hello"
ACK = "ack"