//! PTY proxy for wrapping interactive programs (psql, mysql, redis-cli, etc.).
//!
//! Forwards all keystrokes to the child process in real-time so that echoing,
//! tab-completion, and line-editing work naturally. Intercepts only at the
//! statement delimiter boundary (`;` or `\n`), running the accumulated
//! statement through [`crate::checks::analyze_command`] before forwarding.
pub use *;
pub use PtyProxy;
pub use PtyProxy;