7 lines
220 B
Python
7 lines
220 B
Python
|
|
"""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
|