Spaces:
Sleeping
Sleeping
File size: 299 Bytes
ea74628 | 1 2 3 4 5 6 7 8 9 10 11 | //! Solver-runtime exports.
//!
//! The actual orchestration lives in `service.rs`. This module just exposes the
//! few types the HTTP layer needs, keeping the rest of the runtime machinery
//! private to the crate.
mod service;
pub use service::SolverService;
pub use solverforge::SolverStatus;
|