//! The `dbpylot` command-line entry point.
//!//! All the logic lives in `opendbpylot::cli` (shared with the Python/Node
//! bindings, which run the same CLI in-process). This binary just runs it.
useanyhow::Result;#[tokio::main]
async fnmain()->Result<()>{opendbpylot::cli::run().await
}