diff options
| author | Jakub Panek <me@panekj.dev> | 2022-04-28 17:53:59 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-28 18:53:59 +0100 |
| commit | 93ab4e7842ac3c3a37e8d423ae57ef3e7d151b7b (patch) | |
| tree | c910b1bb047a540c361f6cb6f8e403f1b83b925a /src/command/client/event.rs | |
| parent | Bump axum from 0.5.3 to 0.5.4 (#355) (diff) | |
| download | atuin-93ab4e7842ac3c3a37e8d423ae57ef3e7d151b7b.zip | |
ignore JetBrains IDEs, tidy-up imports (#348)
* ignore JB IDEs
* tidy-up imports
* add rustfmt config
Diffstat (limited to 'src/command/client/event.rs')
| -rw-r--r-- | src/command/client/event.rs | 6 |
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), |
