fix
Some checks failed
ci/woodpecker/push/test Pipeline failed

This commit is contained in:
JMARyA 2024-12-29 21:37:45 +01:00
parent cd140f0160
commit d6555edc29
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -4,5 +4,5 @@ use crate::request::{StringResponse, respond_script};
#[get("/assets/htmx.min.js")] #[get("/assets/htmx.min.js")]
pub fn htmx_script_route() -> StringResponse { pub fn htmx_script_route() -> StringResponse {
respond_script(include_str!("htmx.min.js")) respond_script(include_str!("htmx.min.js").to_string())
} }