kithe_plot/model/mod.rs
1//! Domain model module.
2//!
3//! - `data`: generic columnar numeric data storage + parsing utilities.
4//! - `types`: reusable configuration/style types for plotting.
5//! - `plot`: aggregate plot model (axes, legend, series, layout).
6
7pub mod data;
8pub mod plot;
9pub mod types;
10
11pub use data::*;
12pub use plot::*;
13pub use types::*;