rustauth_actix_web/lib.rs
1//! Actix Web 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::RustAuthActixWebError;
13pub use options::RustAuthActixWebOptions;
14pub use router::{handle, validate_mount_config, RustAuthActixWebExt};