atproto_oauth_aip/
lib.rs

1//! AT Protocol OAuth AIP implementation.
2#![warn(missing_docs)]
3
4/// Error types for OAuth workflow operations.
5pub mod errors;
6/// Resource definitions for OAuth operations.
7pub mod resources;
8/// OAuth workflow implementation.
9pub mod workflow;