aboutsummaryrefslogtreecommitdiffstats
path: root/src/blocking/mod.rs
blob: 9f4e284d9ae2484482c59ca26a9c946fa1c6e03e (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::{Pts, Pty};