Update documentation

This commit is contained in:
Rob Wagner 2023-07-22 18:56:14 -04:00
parent 8f8ef59660
commit 07b22697a2
No known key found for this signature in database
GPG key ID: 53CCB4497B15CF61
3 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,5 @@
//! Axum extractors for htmx headers.
use axum::{extract::FromRequestParts, http::request::Parts};
use crate::{

View file

@ -1,3 +1,5 @@
//! HTTP headers used by htmx.
/// Indicates that the request is via an element using `hx-boost` attribute.
///
/// See <https://htmx.org/attributes/hx-boost/> for more information.

View file

@ -1,3 +1,4 @@
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
pub mod extractors;
pub mod headers;