1//! Core OAuth 2.1 (AT Protocol profile) types and helpers for Jacquard.
2//! Transport, discovery, and orchestration live in `jacquard`.
3
4pub mod atproto;
5pub mod authstore;
6pub mod client;
7pub mod dpop;
8pub mod error;
9pub mod jose;
10pub mod keyset;
11pub mod request;
12pub mod resolver;
13pub mod scopes;
14pub mod session;
15pub mod types;
16pub mod utils;
17
18pub const FALLBACK_ALG: &str = "ES256";