blob: 21c19ec854d3b843c23711dd5850836587cb6fe4 (
plain)
1
2
3
4
5
6
7
8
|
//! Stable host process that owns the MCP session and routes store work to a disposable worker.
mod binary;
mod config;
mod process;
mod runtime;
pub(crate) use runtime::run_host as serve;
|