Files
zesdex/crates/zesdex-iam/src/infrastructure/http/mod.rs
T

10 lines
255 B
Rust
Raw Normal View History

//! HTTP adapter layer for OAuth callback handling.
//!
//! # Sub-modules
//!
//! - [`dto`] — Request/response DTOs for the loopback endpoint
//! - [`handlers`] — HTTP handler that validates state and extracts `?code=`
pub mod dto;
pub mod handlers;