aboutsummaryrefslogtreecommitdiffstats
path: root/src/blocking/mod.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-29 02:55:24 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-29 03:52:12 -0500
commit3b550f5d3dad77a56455352579fae3071b42e86d (patch)
tree393de5f206d227ec71149f478db900291357c456 /src/blocking/mod.rs
parentf8780ca1e76286688b74d8a6c64d5fadf3cfd2a1 (diff)
downloadpty-process-3b550f5d3dad77a56455352579fae3071b42e86d.tar.gz
pty-process-3b550f5d3dad77a56455352579fae3071b42e86d.zip
wip another complete refactor
Diffstat (limited to 'src/blocking/mod.rs')
-rw-r--r--src/blocking/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/blocking/mod.rs b/src/blocking/mod.rs
new file mode 100644
index 0000000..a45b132
--- /dev/null
+++ b/src/blocking/mod.rs
@@ -0,0 +1,4 @@
+mod command;
+pub use command::{Child, Command};
+mod pty;
+pub use pty::Pty;