auth_framework/authentication/mod.rs
1//! Authentication modules
2//!
3//! This module provides various authentication mechanisms including
4//! advanced authentication, multi-factor authentication, and credential management.
5//!
6//! This is a supporting module for auth-related data types and helpers.
7//! Most applications should start from [`crate::AuthFramework`] or
8//! [`crate::prelude`] rather than treating this as a parallel framework entry point.
9
10pub mod advanced_auth;
11pub mod credentials;
12pub mod mfa;
13
14pub use advanced_auth::*;
15pub use credentials::*;
16pub use mfa::*;