//! Same entry point as the `model-rs` binary: parses CLI args and runs [`model_rs::run`].
//!//! Run from the repository root:
//! ```text
//! cargo run --example library_run_cli -- --help
//! ```
usemodel_rs::Result;#[tokio::main]
async fnmain()->Result<()>{model_rs::run().await
}