Skip to content

Commit

Permalink
🚚 Rename CLI to Cli
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanTsune committed Feb 2, 2024
1 parent d63278f commit f521cdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::command::mount::MountArgs;
use clap::{Parser, Subcommand};

#[derive(Parser)]
pub(crate) struct CLI {
pub(crate) struct Cli {
#[clap(subcommand)]
pub(crate) subcommand: SubCommand,
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fn main() -> io::Result<()> {
}

fn entry() -> io::Result<()> {
let cli = cli::CLI::parse();
let cli = cli::Cli::parse();
match cli.subcommand {
SubCommand::Mount(args) => args.execute(),
}
Expand Down

0 comments on commit f521cdc

Please sign in to comment.