Spaces:
Paused
Paused
File size: 345 Bytes
4f50b67 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | //! HTTP transport surface for the field-service routing app.
//!
//! Routes decode browser requests, DTOs define the JSON contract, route
//! geometry adapts road-network output, and `SolverService` owns retained jobs.
mod dto;
mod route_dto;
mod route_geometry;
mod routes;
mod sse;
pub use dto::PlanDto;
pub use routes::{router, AppState};
|