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

Hello World!

").into_response() } pub async fn post() -> impl IntoResponse { "Posted successfully".into_response() }