agentmux/lib.rs
1//! Shared primitives for agentmux executables.
2
3pub mod commands;
4pub mod configuration;
5pub mod envelope;
6pub mod mcp;
7pub mod relay;
8pub mod runtime;
9pub mod tui;
10
11/// Returns a human-readable startup line for a binary.
12pub fn startup_line(binary: &str) -> String {
13 format!(
14 "{binary} starting ({name} v{version})",
15 name = env!("CARGO_PKG_NAME"),
16 version = env!("CARGO_PKG_VERSION"),
17 )
18}