Skip to main content

rs_auth_axum/
lib.rs

1//! Axum HTTP integration for rs-auth.
2//!
3//! Provides handlers, extractors, middleware, cookie helpers, and a
4//! pre-built [`auth_router`] for mounting authentication endpoints.
5
6pub mod cookie;
7pub mod error;
8pub mod extract;
9pub mod handlers;
10pub mod middleware;
11pub mod router;
12pub mod state;
13
14pub use router::auth_router;
15pub use state::AuthState;