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 dpop;
6pub mod error;
7pub mod jose;
8pub mod keyset;
9pub mod resolver;
10pub mod scopes;
11pub mod session;
12pub mod types;
13
14pub const FALLBACK_ALG: &str = "ES256";