use std::collections::BTreeMap; use chrono::NaiveDate; pub mod heatmap; /// The type used for the collection of date/value pairs. pub type Data = BTreeMap; /// The Error type used within the library. pub type Error = Box; /// The Result type used within the library. pub type Result = std::result::Result;