//! Temporary compatibility wrapper for `smolder <subcommand>`.
//!//! New callers should use the standalone binaries directly. This wrapper exists
//! only to keep older scripts working while the repo migrates.
usestd::env;#[tokio::main(flavor ="current_thread")]
async fnmain(){matchsmolder_tools::cli::run_smolder(env::args().collect()).await {Ok(code)=>{if code !=0{std::process::exit(code);}}Err(error)=>{eprintln!("{error}");std::process::exit(1);}}}