2023-07-23 00:56:14 +02:00
|
|
|
#![doc = include_str!("../README.md")]
|
2023-07-22 22:37:15 +02:00
|
|
|
#![forbid(unsafe_code)]
|
2023-07-23 00:24:51 +02:00
|
|
|
pub mod extractors;
|
2023-07-28 03:58:53 +02:00
|
|
|
#[cfg(feature = "guards")]
|
|
|
|
pub mod guard;
|
2023-07-23 00:20:29 +02:00
|
|
|
pub mod headers;
|
2023-10-22 15:26:03 +02:00
|
|
|
pub mod responders;
|
2023-07-22 23:59:06 +02:00
|
|
|
|
2023-10-22 15:26:03 +02:00
|
|
|
use axum::{
|
|
|
|
http::HeaderMap,
|
|
|
|
response::{IntoResponse, Response},
|
|
|
|
};
|
2023-07-23 00:24:51 +02:00
|
|
|
pub use extractors::*;
|
2023-07-28 03:58:53 +02:00
|
|
|
#[cfg(feature = "guards")]
|
|
|
|
pub use guard::*;
|
2023-07-23 00:20:29 +02:00
|
|
|
pub use headers::*;
|
2023-10-22 15:26:03 +02:00
|
|
|
pub use responders::*;
|