diff options
Diffstat (limited to 'src/command/client.rs')
| -rw-r--r-- | src/command/client.rs | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/command/client.rs b/src/command/client.rs index 4858e2ba..80316ed9 100644 --- a/src/command/client.rs +++ b/src/command/client.rs @@ -1,11 +1,10 @@ -use clap::CommandFactory; -use clap::Subcommand; -use clap_complete::Shell; -use clap_complete::{generate, generate_to}; +use std::path::PathBuf; + +use clap::{CommandFactory, Subcommand}; +use clap_complete::{generate, generate_to, Shell}; use eyre::{Result, WrapErr}; -use atuin_client::database::Sqlite; -use atuin_client::settings::Settings; +use atuin_client::{database::Sqlite, settings::Settings}; use atuin_common::utils::uuid_v4; #[cfg(feature = "sync")] @@ -18,8 +17,6 @@ mod init; mod search; mod stats; -use std::path::PathBuf; - #[derive(Subcommand)] #[clap(infer_subcommands = true)] pub enum Cmd { |
