1 2 3 4 5 6 7 8
//! Shift assignment optimization — assigns shifts/tasks to employees based on //! skills and availability, focused on shift coverage and scheduling. mod client; mod models; pub use client::ShiftClient; pub use models::*;