mirror of
https://github.com/robertwayne/axum-htmx
synced 2024-11-24 12:22:49 +01:00
8 lines
138 B
Rust
8 lines
138 B
Rust
#![forbid(unsafe_code)]
|
|
pub mod headers;
|
|
pub mod request;
|
|
pub mod response;
|
|
|
|
pub use headers::*;
|
|
pub use request::*;
|
|
pub use response::*;
|