10 lines
445 B
Rust
10 lines
445 B
Rust
//! Thin re-export shim. All timer logic now lives in [`crate::service::timer`].
|
|
//!
|
|
//! This module exists only for backwards compatibility during the migration.
|
|
//! Callers should use `crate::service::timer::*` directly.
|
|
#[allow(unused_imports)]
|
|
pub use crate::service::timer::{
|
|
TimerCommand, TimerEntry, TimerStore, extract_timer_command, handle_timer_command,
|
|
next_occurrence_of_hhmm, spawn_rate_limit_auto_scheduler, tick_once,
|
|
};
|