feat: add profile option to Args with default 'default'

Co-authored-by: aider (openai/gpt-5) <aider@aider.chat>
This commit is contained in:
Chaos Rogers 2025-10-31 22:28:22 +00:00
parent c1013feda6
commit 5631a12c7c

View file

@ -26,6 +26,10 @@ struct Args {
/// The URL of the video/music to download
#[arg(name = "URL")]
url: String,
/// Profile name to use from config (falls back to 'default')
#[arg(short, long, default_value = "default")]
profile: String,
}
fn main() -> Result<()> {