feat(workflow): Add a new node for executing code

This commit is contained in:
Eternity
2026-01-26 17:29:44 +08:00
parent 3b4b474ce8
commit f1f887faae
8 changed files with 193 additions and 11 deletions

View File

@@ -15,7 +15,6 @@ class ExecutionResult:
self.stdout = stdout
self.stderr = stderr
self.exit_code = exit_code
self.error = error
class CodeExecutor(ABC):