Skip to main content

meow_api/
ui.rs

1use axum::response::Html;
2
3const UI_HTML: &str = include_str!("../static/index.html");
4
5pub async fn serve_ui() -> Html<&'static str> {
6    Html(UI_HTML)
7}