diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 747a8f1..79041fe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,8 +55,8 @@ async fn main() -> Result<()> { init_error_hooks()?; // Create an application. - let mut app = App::new(parsed_args)?; + let mut app = App::new(&parsed_args)?; - app.run().await?; + app.run(&parsed_args).await?; Ok(()) } |
