11 lines
330 B
Rust
11 lines
330 B
Rust
//! Shared library for `hive-bash-daemon` and `hive-bash-mcp`.
|
|
//!
|
|
//! The daemon owns the subprocess runner loop and unix socket server.
|
|
//! The stdio MCP bridge is a thin client that forwards each tool call
|
|
//! to the daemon over the unix socket.
|
|
|
|
pub mod paths;
|
|
pub mod protocol;
|
|
pub mod runner;
|
|
pub mod socket;
|
|
pub mod stats;
|