Drop bang-only enter alias

This commit is contained in:
2026-02-17 06:02:09 +09:00
parent b3ce2622e3
commit 6049ba7a8a
3 changed files with 16 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ logger = logging.getLogger(__name__)
class Bridge:
"""Slack ↔ CLI 프로세스 간의 중계기."""
ENTER_COMMANDS = {"!", "!e", "!enter"}
ENTER_COMMANDS = {"!e", "!enter"}
def __init__(self, config: Config | None = None) -> None:
self.config = config or Config()