busbar_sf_agentscript/graph/render/mod.rs
1//! Graph rendering utilities.
2//!
3//! This module provides various output formats for visualizing RefGraph structures:
4//! - ASCII tree rendering for terminal display
5//! - GraphML export for external visualization tools
6
7mod ascii;
8mod graphml;
9
10pub use ascii::{render_actions_view, render_ascii_tree, render_full_view, render_topic_flow};
11pub use graphml::render_graphml;