Skip to content

Commit

Permalink
Refactor imports in cli.rs and main.rs
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammad Mahad <[email protected]>
  • Loading branch information
MahadMuhammad authored and CohenArthur committed Sep 16, 2024
1 parent ad7c5d0 commit 8fe6b59
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 5 additions & 4 deletions src/cli.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
use std::{fs, path};

use anyhow::{Context, Result};
use clap::Parser;
use {
anyhow::{Context, Result},
clap::Parser,
std::{fs, path},
};

#[derive(Parser, Debug)]
#[command(
Expand Down
6 changes: 4 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use anyhow::{Context, Result};
use clap::Parser;
use {
anyhow::{Context, Result},
clap::Parser,
};

mod cli;
mod errors;
Expand Down

0 comments on commit 8fe6b59

Please sign in to comment.