use axum::response::{Html, IntoResponse}; pub async fn get() -> impl IntoResponse { Html("

Hello World!

").into_response() }