1//! A library for creating streaming plots: where data is passed in 2//! periodically and the plot automatically updates. 3//! 4 5mod figure; 6mod utils; 7mod window; 8 9pub use figure::{Figure, FigureConfig, PlotType};