aboutsummaryrefslogtreecommitdiffstats
path: root/src/smol.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-28 03:33:52 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-28 05:28:28 -0500
commitf8780ca1e76286688b74d8a6c64d5fadf3cfd2a1 (patch)
treeb1e0fe6a378f3a8810e0332ca572a86185fd556c /src/smol.rs
parentb181b63a69d5db78769c1c3723a9940f66491466 (diff)
downloadpty-process-f8780ca1e76286688b74d8a6c64d5fadf3cfd2a1.tar.gz
pty-process-f8780ca1e76286688b74d8a6c64d5fadf3cfd2a1.zip
wip
Diffstat (limited to 'src/smol.rs')
-rw-r--r--src/smol.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/smol.rs b/src/smol.rs
index 2a66647..8d0e877 100644
--- a/src/smol.rs
+++ b/src/smol.rs
@@ -1,2 +1,5 @@
-pub type Child =
- crate::Child<async_process::Child, crate::pty::async_io::Pty>;
+type Pt = async_io::Async<std::fs::File>;
+
+pub type Command = crate::Command<async_process::Command, Pt>;
+pub type Child = crate::Child<async_process::Child, Pt>;
+pub type Pty = crate::Pty<Pt>;