16 lines
464 B
Rust
16 lines
464 B
Rust
//! Shared in-container harness code used by both `hive-ag3nt` (agent) and
|
|
//! `hive-m1nd` (manager) binaries.
|
|
|
|
pub mod client;
|
|
pub mod events;
|
|
pub mod login;
|
|
pub mod login_session;
|
|
pub mod mcp;
|
|
pub mod turn;
|
|
pub mod web_ui;
|
|
|
|
/// Default socket path inside the container — bind-mounted by `hive-c0re`.
|
|
pub const DEFAULT_SOCKET: &str = "/run/hive/mcp.sock";
|
|
|
|
/// Default web UI port — used when `HIVE_PORT` env is unset.
|
|
pub const DEFAULT_WEB_PORT: u16 = 8042;
|