feat(fase4): add advanced nodes - switch, delay, random, loop, goto

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 11:13:36 +00:00
parent 62d4c37c1d
commit 058f837ecb
2 changed files with 118 additions and 0 deletions

View File

@@ -16,3 +16,11 @@ from app.nodes.basic import (
WaitInputExecutor,
)
from app.nodes.script import HttpRequestExecutor, JavaScriptExecutor
from app.nodes.validation import (
ValidateDateExecutor,
ValidateEmailExecutor,
ValidateNumberExecutor,
ValidateOptionsExecutor,
ValidatePhoneExecutor,
ValidateRegexExecutor,
)