oxide_auth_poem/lib.rs
1//! Adaptations and integration for Poem.
2#![warn(missing_docs)]
3#![deny(clippy::pedantic)]
4// i hate this lint in particular
5#![allow(clippy::module_name_repetitions)]
6
7/// Things related to Requests (from the client)
8pub mod request;
9/// Errors for this crate.
10pub mod error;
11/// Things related to Responses (from the server)
12pub mod response;