Beta/core/action_executor.py

7 lines
220 B
Python
Raw Permalink Normal View History

"""Action execution - routes AI actions to Discord commands."""
# Renamed from action_router.py for clarity
from .action_router import ActionExecutor # noqa: F401
# Backward compatibility
ActionRouter = ActionExecutor