aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-07-16 03:43:20 -0400
committerJesse Luehrs <doy@tozt.net>2020-07-16 03:43:20 -0400
commit06e90f8e12f207b65df99e93b6a6ef27c999a137 (patch)
tree6421223fab19a1e229301b2c393403352a0fbc46 /src/lib.rs
parent667878c1e186907b57b22b07b9f6d0e3ef76252a (diff)
downloadpty-process-06e90f8e12f207b65df99e93b6a6ef27c999a137.tar.gz
pty-process-06e90f8e12f207b65df99e93b6a6ef27c999a137.zip
allow setting the terminal size
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 2e6d894..bcf5ce9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,4 +3,4 @@ pub use command::Command;
mod error;
pub use error::{Error, Result};
mod pty;
-pub use pty::Pty;
+pub use pty::{Pty, Size};