1 2 3 4 5 6 7 8 9
//! Rendering modules for TR-300 //! //! Provides table and bar graph rendering for fixed-width terminal output. pub mod bar; pub mod table; pub use bar::{render_bar, render_bar_ascii, render_bar_unicode}; pub use table::TableRenderer;