openauth_axum/lib.rs
1//! Axum integration for OpenAuth.
2
3mod error;
4mod options;
5mod request;
6mod response;
7mod router;
8
9pub use error::OpenAuthAxumError;
10pub use options::OpenAuthAxumOptions;
11pub use router::{
12 handle, handle_ref, handle_ref_with_options, handle_with_options, router, router_with_options,
13 routes, routes_with_options, OpenAuthAxumExt,
14};