From 5631a12c7c9e4a085e23715784416f4f3e8b2eb9 Mon Sep 17 00:00:00 2001 From: Chaos Rogers Date: Fri, 31 Oct 2025 22:28:22 +0000 Subject: [PATCH] feat: add profile option to Args with default 'default' Co-authored-by: aider (openai/gpt-5) --- src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.rs b/src/main.rs index d74938e..4c9e510 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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<()> {