Spaces:
Paused
Paused
File size: 301 Bytes
4f50b67 | 1 2 3 4 5 6 7 8 9 10 11 | //! Solver-runtime facade exports for the FSR app.
//!
//! Keeping the retained runtime behind `SolverService` prevents HTTP handlers
//! from depending directly on `SolverManager<FieldServicePlan>`.
mod event_payload;
mod service;
pub use service::SolverService;
pub use solverforge::SolverStatus;
|