Skip to main content

tmai_core/ipc/
mod.rs

1//! IPC module for communication between PTY wrappers and tmai parent process
2//!
3//! Uses Unix domain sockets with newline-delimited JSON (ndjson) protocol
4//! for bidirectional communication.
5
6pub mod client;
7pub mod protocol;
8pub mod server;
9
10pub use client::IpcClient;
11pub use server::{IpcRegistry, IpcServer};