faucet_cli/schedule/mod.rs
1//! `faucet schedule` — built-in cron scheduler.
2//!
3//! The runtime loop lives in `crate::commands::schedule`; this module holds
4//! the pure, unit-tested pieces it drives: the config types ([`spec`]),
5//! the validated/compiled schedule (compiled — added in Task 3), the decision
6//! state machine (state — added in Task 4), and the metric emitters
7//! (metrics — added in Task 5).
8
9pub mod compiled;
10pub mod metrics;
11pub mod spec;
12pub mod state;