tmai-core 0.8.2

Core library for tmai - agent detection, state management, and monitoring
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! IPC module for communication between PTY wrappers and tmai parent process
//!
//! Uses Unix domain sockets with newline-delimited JSON (ndjson) protocol
//! for bidirectional communication.

pub mod client;
pub mod protocol;
pub mod server;

pub use client::IpcClient;
pub use server::{IpcRegistry, IpcServer};