fix: add Clone derive to Args struct to fix compilation error

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-10 23:02:51 -03:00
parent 96aef4f02c
commit 37654eb911

View File

@@ -29,7 +29,7 @@ extern crate serde;
/**
* Main struct for command-line arguments.
*/
#[derive(Parser, Debug)]
#[derive(Parser, Debug, Clone)]
#[command(author, version, about, long_about = None)]
pub struct Args {
#[command(flatten)]