aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-07-15 02:17:57 -0400
committerJesse Luehrs <doy@tozt.net>2020-07-15 02:17:57 -0400
commit3d54d1f4cb7274280f4e01e101137e91f336bc5c (patch)
tree896ecd9b9bd8696c9818c0779cd1d35876adec84 /src/lib.rs
parent489a8198828be02c92da0c771ae0864915b08e7f (diff)
downloadpty-process-3d54d1f4cb7274280f4e01e101137e91f336bc5c.tar.gz
pty-process-3d54d1f4cb7274280f4e01e101137e91f336bc5c.zip
start of an implementation
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 31e1bb2..2e6d894 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,6 @@
-#[cfg(test)]
-mod tests {
- #[test]
- fn it_works() {
- assert_eq!(2 + 2, 4);
- }
-}
+mod command;
+pub use command::Command;
+mod error;
+pub use error::{Error, Result};
+mod pty;
+pub use pty::Pty;