From 5cf9a5e311d163b30a6cf22f5cc980a09c34e2a0 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sun, 25 Jan 2026 17:28:28 -0800 Subject: Initial commit --- src/lib.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/lib.rs (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..d1ae1a9 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,14 @@ +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; -- cgit v1.2.3