Skip to content

Commit

Permalink
refactor: remove verbose field from Argument
Browse files Browse the repository at this point in the history
  • Loading branch information
SkuldNorniern committed Mar 13, 2024
1 parent 2655940 commit da9093d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/argument.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ pub struct Args {
pub interface: Option<String>,
pub files: Files,
pub parameters: Parameters,
pub verbose: Option<u8>,
// pub verbose: Option<u8>,
}

impl Args {
pub fn new(
interface: Option<String>,
files: Files,
parameters: Parameters,
verbose: Option<u8>,
// verbose: Option<u8>,
) -> Self {
Self {
interface,
files,
parameters,
verbose,
// verbose,
}
}
}
Expand Down

0 comments on commit da9093d

Please sign in to comment.