aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/client/sync.rs
diff options
context:
space:
mode:
authorJakub Panek <me@panekj.dev>2022-04-28 17:53:59 +0000
committerGitHub <noreply@github.com>2022-04-28 18:53:59 +0100
commit93ab4e7842ac3c3a37e8d423ae57ef3e7d151b7b (patch)
treec910b1bb047a540c361f6cb6f8e403f1b83b925a /src/command/client/sync.rs
parentBump axum from 0.5.3 to 0.5.4 (#355) (diff)
downloadatuin-93ab4e7842ac3c3a37e8d423ae57ef3e7d151b7b.zip
ignore JetBrains IDEs, tidy-up imports (#348)
* ignore JB IDEs * tidy-up imports * add rustfmt config
Diffstat (limited to 'src/command/client/sync.rs')
-rw-r--r--src/command/client/sync.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/command/client/sync.rs b/src/command/client/sync.rs
index 8e80310a..6fbf8dfc 100644
--- a/src/command/client/sync.rs
+++ b/src/command/client/sync.rs
@@ -1,8 +1,7 @@
-use atuin_client::database::Database;
use clap::Subcommand;
use eyre::{Result, WrapErr};
-use atuin_client::settings::Settings;
+use atuin_client::{database::Database, settings::Settings};
mod login;
mod logout;