Spaces:
Sleeping
Sleeping
File size: 321 Bytes
03e3b1b | 1 2 3 4 5 6 7 8 9 10 11 12 13 | //! HTTP transport surface for the deliveries tutorial.
//!
//! The API layer stays intentionally thin: routes decode requests, DTOs define
//! the browser-visible JSON contract, and `SolverService` owns retained jobs.
mod dto;
mod errors;
mod routes;
mod sse;
pub use dto::PlanDto;
pub use routes::{router, AppState};
|