fhtmx-axum 0.4.2

Axum utilities for fhtmx.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Axum integration for fhtmx.
//!
//! Provides response helpers, SSE utilities, and the `HxRequest` extractor.

/// Response helpers for Axum.
pub mod response;
/// Server-sent events for Axum.
pub mod sse;
/// Utility types for Axum integration.
pub mod utils;
// TODO: ws

/// Re-exports the Axum integration types.
pub mod prelude {
    pub use crate::response::*;
    // pub use crate::sse::*;
    pub use crate::utils::*;
}