use axum::response::{Html, IntoResponse}; pub async fn get_scripts() -> impl IntoResponse { Html( r##" Script1 Script2 Refresh "##, ) }