Skip to main content

comdirect_rest_api/oauth2/
mod.rs

1//! Comdirect API OAuth2 Authentication and Session Management.
2//!
3//! This module provides the core authentication logic for the Comdirect REST API,
4//! including OAuth2 flows (Password and Refresh tokens), Push-TAN validation,
5//! and automatic background token refreshment.
6
7pub mod config;
8pub mod errors;
9pub mod session;
10pub(crate) mod types;
11
12pub use config::ComdirectConfig;
13pub use errors::AuthError;
14pub use session::Session;