1//! Dashboard HTML rendering module 2//! 3//! This module provides HTML dashboard rendering functionality using Handlebars templates. 4 5pub mod renderer; 6 7pub use renderer::{rebuild_allocations_from_events, DashboardContext, DashboardRenderer};