mirror of
https://github.com/robertwayne/axum-htmx
synced 2024-11-24 12:22:49 +01:00
17 lines
350 B
Rust
17 lines
350 B
Rust
#![doc = include_str!("../README.md")]
|
|
#![forbid(unsafe_code)]
|
|
pub mod extractors;
|
|
#[cfg(feature = "guards")]
|
|
pub mod guard;
|
|
pub mod headers;
|
|
pub mod responders;
|
|
|
|
use axum::{
|
|
http::HeaderMap,
|
|
response::{IntoResponse, Response},
|
|
};
|
|
pub use extractors::*;
|
|
#[cfg(feature = "guards")]
|
|
pub use guard::*;
|
|
pub use headers::*;
|
|
pub use responders::*;
|