Skip to main content

tmux_mcp_rs/
lib.rs

1//! Public API surface for the tmux-mcp-rs library.
2
3/// Command execution tracking helpers and markers.
4pub mod commands;
5/// Error types and Result alias for the library.
6pub mod errors;
7/// Security policy configuration and enforcement.
8pub mod security;
9/// Low-level tmux command wrappers and parsers.
10pub mod tmux;
11/// Shared data types used across tools and responses.
12pub mod types;
13
14#[cfg(test)]
15mod test_support;