1 2 3 4 5 6 7
use axum::response::Html; const UI_HTML: &str = include_str!("../static/index.html"); pub async fn serve_ui() -> Html<&'static str> { Html(UI_HTML) }