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 9 lines 323 B view raw
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;