//! Example: download subtitles for a single YouTube URL.
//!
//! Run with:
//!
//! ```text
//! cargo run --example single_url -- "https://youtu.be/dQw4w9WgXcQ"
//! ```
//!
//! The program forwards a synthetic argv to `Cli::parse_from` so the
//! full flag surface of the production CLI is available to the
//! example. The body is printed to stdout by [`youtube_legend_cli::run`].
use Parser;
use ExitCode;
use ;
async