CLI app for developers prototyping atproto functionality
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 242 B view raw
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}