1//! Adaptations and integration for Axum. 2#![warn(missing_docs)] 3 4mod error; 5pub use error::WebError; 6 7mod request; 8pub use request::{OAuthResource, OAuthRequest}; 9 10mod response; 11pub use response::OAuthResponse;