aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-07-17 02:32:15 -0400
committerJesse Luehrs <doy@tozt.net>2020-07-17 02:32:15 -0400
commitce4135854ca7209b99347b24c107d49990283eda (patch)
treee89a2e38d859ffed99c58dfa854c8d997a4e7238
parent27aef41bd21bbef3156d337a019a109d9ea72a85 (diff)
downloadpty-process-ce4135854ca7209b99347b24c107d49990283eda.tar.gz
pty-process-ce4135854ca7209b99347b24c107d49990283eda.zip
also expose Child
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index bcf5ce9..112bec1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,5 +1,5 @@
mod command;
-pub use command::Command;
+pub use command::{Child, Command};
mod error;
pub use error::{Error, Result};
mod pty;