From 3d54d1f4cb7274280f4e01e101137e91f336bc5c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 15 Jul 2020 02:17:57 -0400 Subject: start of an implementation --- src/lib.rs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/lib.rs') 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; -- cgit v1.2.3-54-g00ecf