CLI app for developers prototyping atproto functionality
1//! `atproto-devtool` library crate.
2//!
3//! The binary at `src/main.rs` is a thin tokio bootstrap over [`cli::run`].
4//! All pipeline modules are re-exported here so integration tests under
5//! `tests/*.rs` can reach them as `atproto_devtool::commands::test::labeler::...`.
6
7pub mod cli;
8pub mod commands;
9pub mod common;