rustauth-axum 0.2.0

Axum integration for RustAuth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Axum integration for RustAuth.

mod error;
mod options;
mod request;
mod response;
mod router;

#[cfg(feature = "test-utils")]
pub mod test_utils;

pub use error::RustAuthAxumError;
pub use options::RustAuthAxumOptions;
pub use router::{handle, validate_mount_config, RustAuthAxumExt};