style(cli-clap): ignore the Args argument because it doesn't get used yet (to satisfy Clippy)

This commit is contained in:
J / Jacob Babich
2024-10-15 16:47:50 -04:00
parent 844494b2ca
commit 4e6d56c044

View File

@@ -9,7 +9,7 @@ pub struct Args {
command: Command, command: Command,
} }
pub fn main(args: Args) { pub fn main(_args: Args) {
#[cfg(feature = "tracing")] #[cfg(feature = "tracing")]
tracing::info!("What's up, world?"); tracing::info!("What's up, world?");
} }