use clap::Parser; use pilcrow::cli::{self, Exit}; #[tokio::main] async fn main() -> Exit { let args = cli::Args::parse(); args.run().await.into() }