aboutsummaryrefslogtreecommitdiffstats
path: root/src/blocking/mod.rs
blob: 17a0733d62d0ef7fda76f3203271912bdb6a77a6 (plain) (blame)
1
2
3
4
5
6
7
//! Blocking equivalents for [`pty_process::Command`](crate::Command) and
//! [`pty_process::Pty`](crate::Pty)

mod command;
pub use command::Command;
mod pty;
pub use pty::Pty;