1 2 3 4 5 6 7 8 9
//! `atproto-devtool` binary entry point. use miette::Result; use std::process::ExitCode; #[tokio::main(flavor = "current_thread")] async fn main() -> Result<ExitCode> { atproto_devtool::cli::run().await }