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/history.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/history.rs')
| -rw-r--r-- | src/command/client/history.rs | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/command/client/history.rs b/src/command/client/history.rs index 6e265e30..d001658c 100644 --- a/src/command/client/history.rs +++ b/src/command/client/history.rs @@ -1,13 +1,17 @@ -use std::env; -use std::io::{StdoutLock, Write}; -use std::time::Duration; +use std::{ + env, + io::{StdoutLock, Write}, + time::Duration, +}; use clap::Subcommand; use eyre::Result; -use atuin_client::database::{current_context, Database}; -use atuin_client::history::History; -use atuin_client::settings::Settings; +use atuin_client::{ + database::{current_context, Database}, + history::History, + settings::Settings, +}; #[cfg(feature = "sync")] use atuin_client::sync; |
