aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/client/event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/client/event.rs')
-rw-r--r--src/command/client/event.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/command/client/event.rs b/src/command/client/event.rs
index f09752d6..189d9e73 100644
--- a/src/command/client/event.rs
+++ b/src/command/client/event.rs
@@ -1,9 +1,7 @@
-use std::thread;
-use std::time::Duration;
+use std::{thread, time::Duration};
use crossbeam_channel::unbounded;
-use termion::event::Key;
-use termion::input::TermRead;
+use termion::{event::Key, input::TermRead};
pub enum Event<I> {
Input(I),