fhtmx_actix/lib.rs
1//! Actix-web integration for fhtmx.
2//!
3//! Provides response helpers, SSE utilities, and the `HXRequest` header extractor.
4
5/// Response helpers for Actix.
6pub mod response;
7/// Server-sent events for Actix.
8pub mod sse;
9/// Utility types for Actix integration.
10pub mod utils;
11// TODO: ws
12
13/// Re-exports the Actix integration types.
14pub mod prelude {
15 pub use crate::response::*;
16 pub use crate::sse::*;
17 pub use crate::utils::*;
18}