aboutsummaryrefslogtreecommitdiffstats
path: root/src/blocking/mod.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-09 02:33:01 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-09 02:40:29 -0500
commitdd845e949ac59e08bf12d0fcac8b4069c5c7645c (patch)
tree3f9dc84ac00fb692f80726c3539084185a9f88fa /src/blocking/mod.rs
parent3a92d03b3c47926b0eeaac8f301833b23d68a6ec (diff)
downloadtextmode-dd845e949ac59e08bf12d0fcac8b4069c5c7645c.tar.gz
textmode-dd845e949ac59e08bf12d0fcac8b4069c5c7645c.zip
add async implementation of Input
this is just copied and pasted for now, need to figure out how to generate one from the other
Diffstat (limited to 'src/blocking/mod.rs')
-rw-r--r--src/blocking/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/blocking/mod.rs b/src/blocking/mod.rs
index d4ffe4a..919b08f 100644
--- a/src/blocking/mod.rs
+++ b/src/blocking/mod.rs
@@ -1,4 +1,5 @@
pub(crate) mod input;
-pub use input::{Input, RawGuard};
+pub use crate::RawGuard;
+pub use input::Input;
mod output;
pub use output::{Output, ScreenGuard};