aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-09 03:25:51 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-09 03:25:51 -0500
commit33b75e52a2c5c5ac3499c8cb29632852cec66f56 (patch)
tree4a2870dd43785711c3465472453ac4c9b78f58ea
parenta610da0f7eaa08aa087bef766375481ad0959166 (diff)
downloadtextmode-33b75e52a2c5c5ac3499c8cb29632852cec66f56.tar.gz
textmode-33b75e52a2c5c5ac3499c8cb29632852cec66f56.zip
fix type alias
-rw-r--r--src/blocking/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/blocking/mod.rs b/src/blocking/mod.rs
index 919b08f..d4ffe4a 100644
--- a/src/blocking/mod.rs
+++ b/src/blocking/mod.rs
@@ -1,5 +1,4 @@
pub(crate) mod input;
-pub use crate::RawGuard;
-pub use input::Input;
+pub use input::{Input, RawGuard};
mod output;
pub use output::{Output, ScreenGuard};