atproto-client 0.4.1

HTTP client for AT Protocol services with OAuth and identity integration
Documentation
//! HTTP client functionality for AT Protocol services.
//!
//! Provides authenticated HTTP client operations and URL building utilities
//! for interacting with AT Protocol endpoints.

#![warn(missing_docs)]

pub mod client;
pub mod errors;
pub mod url;

mod com_atproto_repo;

/// AT Protocol namespace modules.
pub mod com {
    /// AT Protocol core modules.
    pub mod atproto {
        /// Repository operations for AT Protocol records.
        pub mod repo {
            pub use crate::com_atproto_repo::*;
        }
    }
}