This commit is contained in:
sujit
2025-08-10 09:55:24 +05:45
parent 274f46edad
commit 2977bc8b7e
8 changed files with 284 additions and 4 deletions

View File

@@ -139,6 +139,7 @@ type Node struct {
NodeKey string `json:"node_key" yaml:"node_key"`
Node string `json:"node" yaml:"node"`
Data Data `json:"data" yaml:"data"`
Debug bool `json:"debug" yaml:"debug"`
FirstNode bool `json:"first_node" yaml:"first_node"`
}
@@ -163,6 +164,7 @@ type Handler struct {
Name string `json:"name" yaml:"name"`
Key string `json:"key" yaml:"key"`
DisableLog bool `json:"disable_log" yaml:"disable_log"`
Debug bool `json:"debug" yaml:"debug"`
Nodes []Node `json:"nodes,omitempty" yaml:"nodes,omitempty"`
Edges []Edge `json:"edges,omitempty" yaml:"edges,omitempty"`
Branches []Branch `json:"branches,omitempty" yaml:"branches,omitempty"`