diff options
Diffstat (limited to 'crates/fidget-spinner-cli/src/mcp/host/mod.rs')
| -rw-r--r-- | crates/fidget-spinner-cli/src/mcp/host/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/fidget-spinner-cli/src/mcp/host/mod.rs b/crates/fidget-spinner-cli/src/mcp/host/mod.rs new file mode 100644 index 0000000..21c19ec --- /dev/null +++ b/crates/fidget-spinner-cli/src/mcp/host/mod.rs @@ -0,0 +1,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; |