feat(fase4): add NodeExecutor architecture with basic nodes

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 11:10:21 +00:00
parent 64b186314f
commit 835c4aa387
3 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
from app.nodes.base import NodeExecutor, NodeRegistry
from app.nodes.basic import (
TriggerExecutor, MessageExecutor, ButtonsExecutor,
WaitInputExecutor, SetVariableExecutor, ConditionExecutor
)