From dd845e949ac59e08bf12d0fcac8b4069c5c7645c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 9 Mar 2021 02:33:01 -0500 Subject: add async implementation of Input this is just copied and pasted for now, need to figure out how to generate one from the other --- src/blocking/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/blocking/mod.rs') 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}; -- cgit v1.2.3-54-g00ecf