Remove rust workspace

This commit is contained in:
Andras Schmelczer 2025-07-12 12:45:03 +01:00
parent da60f8c005
commit fc19e650ca
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
52 changed files with 101 additions and 50 deletions

View file

@ -0,0 +1,7 @@
use axum::response::{Html, IntoResponse};
pub async fn index() -> impl IntoResponse {
const HTML_CONTENT: &str = include_str!("./assets/index.html");
let html_content = HTML_CONTENT;
Html(html_content)
}