blackopsrepl's picture
feat(app): add hospital scheduling application
b7e7f16
raw
history blame contribute delete
299 Bytes
//! 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;