Skip to main content

koprogo_api/infrastructure/jobs/
mod.rs

1//! Background jobs (cron / scheduled work).
2//!
3//! Phase A intentionally ships minimal stubs (no scheduler wiring). Real
4//! cron driving (tokio interval task, schedlock, etc.) is a Phase B
5//! follow-up tracked in the Story 3.7 acceptance notes.
6
7pub mod sla_escalation_job;
8
9pub use sla_escalation_job::SlaEscalationJob;