//! `atproto-devtool` binary entry point. // pattern: Imperative Shell use miette::Result; use std::process::ExitCode; #[tokio::main(flavor = "current_thread")] async fn main() -> Result { atproto_devtool::cli::run().await }