13 lines
341 B
Rust
13 lines
341 B
Rust
//! Shared library for the `hive-bash-daemon` binary.
|
|
//!
|
|
//! The daemon owns the subprocess runner loop and serves its MCP tools
|
|
//! (`run`/`status`/`kill`) directly over streamable-http — no stdio
|
|
//! bridge, no round-trip socket.
|
|
|
|
pub mod mcp;
|
|
pub mod paths;
|
|
pub mod protocol;
|
|
pub mod runner;
|
|
pub mod stats;
|
|
#[cfg(test)]
|
|
mod test_util;
|