1use axum::response::Html; 2 3pub(super) async fn handler() -> Html<&'static str> { 4 Html(include_str!("index.html")) 5}