//! Predefined StreamWeave graphs built with the `graph!` macro.
//!
//! Use these instead of building equivalent graphs manually so that fixed
//! pipeline shapes stay declarative and easy to read.
use crateIdentityNode;
use Graph;
use instrument;
/// Trivial start→exit pipeline: one identity from input to output.
///
/// Node names are `start` and `exit` to match the Attractor convention.
/// Graph I/O: `input` → start.in, exit.out → `output`.