Skip to main content

dates_le/
lib.rs

1//! dates-le — every date and timestamp in a codebase, and the instant
2//! each one resolves to.
3//!
4//! `extract/` is pure and is where the behaviour lives; `walk` and
5//! `scan` are the only modules that touch a filesystem; `cli` and `mcp`
6//! are surfaces over the same answers.
7
8pub(crate) mod cli;
9pub(crate) mod extract;
10pub(crate) mod mcp;
11pub(crate) mod scan;
12pub(crate) mod walk;
13
14pub use cli::run;