1 2 3 4 5 6 7 8
//! Field service optimization — vehicle routing with geographic constraints, //! travel time, visit sequencing, and time windows. mod client; mod models; pub use client::FieldServiceClient; pub use models::*;