19 lines
484 B
Python
19 lines
484 B
Python
from app.nodes.advanced import (
|
|
DelayExecutor,
|
|
GoToExecutor,
|
|
LoopExecutor,
|
|
RandomExecutor,
|
|
SwitchExecutor,
|
|
)
|
|
from app.nodes.ai import AIResponseExecutor, AISentimentExecutor
|
|
from app.nodes.base import NodeExecutor, NodeRegistry
|
|
from app.nodes.basic import (
|
|
ButtonsExecutor,
|
|
ConditionExecutor,
|
|
MessageExecutor,
|
|
SetVariableExecutor,
|
|
TriggerExecutor,
|
|
WaitInputExecutor,
|
|
)
|
|
from app.nodes.script import HttpRequestExecutor, JavaScriptExecutor
|