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