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<()> {