//! Thin binary wrapper for the Stormchaser CLI.
//!//! This executable simply imports and runs the core logic from the `stormchaser_cli` library.
useanyhow::Result;useclap::Parser;usestormchaser_cli::{run_cli, Cli};#[tokio::main]
async fnmain()->Result<()>{let cli =Cli::parse();run_cli(cli).await
}