feat: scaffolding work for fan-out nodes for parallel branch execution support and stubbed out Map node types

This commit is contained in:
2026-05-20 11:37:23 -06:00
parent e43c2e477a
commit 8c398b6360
5 changed files with 536 additions and 21 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ mod tests {
assert_eq!(graph.start, "node1");
assert_eq!(graph.nodes.len(), 2);
assert_eq!(
graph.nodes.get("node1").unwrap().next.as_deref(),
graph.nodes.get("node1").unwrap().next_target(),
Some("node2")
);
}