remove old svelte web source

This commit is contained in:
2024-09-30 21:13:20 +02:00
parent f42ebc7044
commit 1ce8ccfdd5
149 changed files with 20 additions and 10198 deletions
+9
View File
@@ -0,0 +1,9 @@
pub use askama::*;
use axum::http::Response;
pub fn into_response<T: Template>(t: &T) -> Response {
match t.render() {
Ok(body) => Html(body),
Err(_) => StatusCode::INTERNAL_SERVER_ERROR.into_response(),
}
}