Skip to main content

rustauth_axum/
lib.rs

1//! Axum integration for RustAuth.
2
3mod error;
4mod options;
5mod request;
6mod response;
7mod router;
8
9#[cfg(feature = "test-utils")]
10pub mod test_utils;
11
12pub use error::RustAuthAxumError;
13pub use options::RustAuthAxumOptions;
14pub use router::{handle, validate_mount_config, RustAuthAxumExt};