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/import.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 '')
| -rw-r--r-- | src/command/client/import.rs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/command/client/import.rs b/src/command/client/import.rs index a4964c51..c70446d5 100644 --- a/src/command/client/import.rs +++ b/src/command/client/import.rs @@ -1,14 +1,15 @@ use std::{env, path::PathBuf}; -use atuin_client::import::fish::Fish; use clap::Parser; use eyre::{eyre, Result}; - -use atuin_client::import::{bash::Bash, zsh::Zsh}; -use atuin_client::{database::Database, import::Importer}; -use atuin_client::{history::History, import::resh::Resh}; use indicatif::ProgressBar; +use atuin_client::{ + database::Database, + history::History, + import::{bash::Bash, fish::Fish, resh::Resh, zsh::Zsh, Importer}, +}; + #[derive(Parser)] #[clap(infer_subcommands = true)] pub enum Cmd { |
