1 2 3 4 5 6 7 8
//! Main page handler use axum::response::Html; /// Serve the main preview page pub async fn index() -> Html<&'static str> { Html(include_str!("../../assets/index.html")) }