pty_process/blocking/
mod.rs

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::{open, Pts, Pty};