From f3d32e203d846be1244cde3a12638b2aba74c5ac Mon Sep 17 00:00:00 2001 From: Sen Huang <48879559+ployts@users.noreply.github.com> Date: Thu, 30 Jul 2026 14:48:20 +0800 Subject: [PATCH] feat: add mail component enum (#405) * feat: add mail component enum * fix format --------- Co-authored-by: jinliyl <6469360+jinliyl@users.noreply.github.com> --- reme/enumeration/component_enum.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reme/enumeration/component_enum.py b/reme/enumeration/component_enum.py index 0f02b1f3..04d29e65 100644 --- a/reme/enumeration/component_enum.py +++ b/reme/enumeration/component_enum.py @@ -36,4 +36,6 @@ class ComponentEnum(str, Enum): AGENT_WRAPPER = "agent_wrapper" + MAIL = "mail" + OUTBOUND_PROXY = "outbound_proxy"