//! Binary entrypoint (behind the `cli` feature). Parses args, runs the
//! pipeline, and exits with the returned code (always `0` in the MVP).
useclap::Parser;usepockingbird::cli::{run, Cli};fnmain(){let cli =Cli::parse();std::process::exit(run(cli));}