auth_framework/server/oauth/mod.rs
1//! OAuth 2.0/2.1 Implementation Module
2//!
3//! This module contains OAuth 2.0 and OAuth 2.1 implementations including:
4//! - OAuth 2.0 core functionality
5//! - OAuth 2.1 enhanced security features
6//! - Pushed Authorization Requests (PAR)
7//! - Rich Authorization Requests
8
9pub mod oauth2;
10pub mod oauth21;
11pub mod par;
12pub mod rich_authorization_requests;
13
14// Re-export commonly used types
15pub use oauth2::*;
16pub use oauth21::*;
17pub use par::*;
18pub use rich_authorization_requests::*;
19
20