Skip to content

Commit

Permalink
♻️ Optimize import
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanTsune committed Aug 12, 2024
1 parent 2097e97 commit 86ef3ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::command::mount::MountArgs;
use crate::command::{complete::CompleteArgs, mount::MountArgs};
use clap::{Parser, Subcommand};

#[derive(Parser)]
Expand All @@ -19,7 +19,7 @@ pub(crate) enum SubCommand {
#[command(about = "Mount archive")]
Mount(MountArgs),
#[command(about = "Generate shell auto complete")]
Complete(crate::command::complete::CompleteArgs),
Complete(CompleteArgs),
}

#[derive(Parser, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
Expand Down

0 comments on commit 86ef3ac

Please sign in to comment.