mirror of
https://github.com/robertwayne/axum-htmx
synced 2024-11-24 04:12:50 +01:00
13 lines
274 B
Rust
13 lines
274 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;
|
|
|
|
pub use extractors::*;
|
|
#[cfg(feature = "guards")]
|
|
pub use guard::*;
|
|
pub use headers::*;
|
|
pub use responders::*;
|