Adding error management

This commit is contained in:
2025-07-11 18:34:04 +02:00
parent 03ed1af7e6
commit 2b288348e2
6 changed files with 83 additions and 37 deletions

View File

@@ -27,6 +27,12 @@ class Connection:
to_id: str
@dataclass
class WorkflowComponentRuntimeState:
id: str
has_error: bool = False
error_message: str = ""
@dataclass
class WorkflowsDesignerSettings:
workflow_name: str = "No Name"