1//! Graph builder API and compiled graph.
23pub mod state_graph;
45pub use state_graph::{StateGraph, CompiledGraph};
67/// Special node name for the graph entry point
8pub const START: &str = "__start__";
910/// Special node name for the graph exit point
11pub const END: &str = "__end__";