zitadel/axum/mod.rs
1//! This module provides convenience functions and structs to interact with ZITADEL within the [axum framework](https://docs.rs/axum/latest/axum/)
2//!
3//! Axum is a simple and easy to use web framework for rust that allows "extracters" and "middlewares" to intercept calls. To authenticate a user against ZITADEL.
4//!
5//! Refer to the specific authentication method to see further documentation and examples:
6//!
7//! - To use OAuth 2.0 Token Introspection, head over to the [introspection] module.
8pub mod introspection;