Skip to main content

atrg_label/
lib.rs

1#![deny(unsafe_code)]
2#![warn(missing_docs)]
3//! Labeler framework for at-rust-go.
4//!
5//! Provides a [`LabelService`] for creating, storing, and streaming
6//! AT Protocol labels per the `com.atproto.label` lexicon.
7
8pub mod label;
9pub mod routes;
10pub mod signing;
11pub mod store;
12pub mod types;
13
14pub use label::LabelService;
15pub use types::{Label, LabelValue, LabelerConfig, SignedLabel};