//! Platform-specific host scheduler adapters.
//!//! Each adapter is gated by its target platform. The cron expression
//! compilation and content rendering logic is platform-independent so it
//! can be tested on any host.
#[cfg(target_os ="linux")]pubmodcron_adapter;#[cfg(target_os ="linux")]pubmodcrontab;#[cfg(target_os ="macos")]pubmodlaunchd;#[cfg(target_os ="windows")]pubmodtask_scheduler;