htmx feature

This commit is contained in:
JMARyA 2024-12-24 15:49:11 +01:00
parent 2097bd1cca
commit 008648dda8
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 2 additions and 3 deletions

View file

@ -31,3 +31,4 @@ reqwest = { version = "0.11", features = ["blocking"] }
[features] [features]
cache = [] cache = []
htmx = []

View file

@ -5,11 +5,9 @@ pub mod format;
pub mod page; pub mod page;
pub mod request; pub mod request;
pub mod result; pub mod result;
#[cfg(feature = "htmx")]
pub mod htmx; pub mod htmx;
// TODO : Cache Headers
// TODO : Refactor Responders
// TODO : Streaming Responses + Ranges
// TODO : API Pagination? // TODO : API Pagination?
// TODO : CORS? // TODO : CORS?
// TODO : CSRF? // TODO : CSRF?