//! Active hours schedule for timezone-aware posting windows.
//!
//! Prevents the bot from posting during off-hours by gating automation
//! loops behind a configurable active window. Supports IANA timezones
//! with automatic DST handling via `chrono-tz`.
//!
//! Submodules:
//! - [`recurrence`]: `PostingSlot`, `apply_slot_jitter`, jitter constant.
//! - [`planner`]: `ActiveSchedule` construction, slot resolution, active-window logic.
//! - [`executor`]: `schedule_gate` async gate function.
pub use schedule_gate;
pub use ;
pub use ;