1 2 3 4 5 6 7
use clap::Parser; #[tokio::main] async fn main() -> anyhow::Result<()> { let opt = pma_cli::Opt::parse(); pma_cli::run(opt).await }