Skip to main content

wowlab_sentinel/http/routes/
index.rs

1use axum::response::Html;
2
3pub(super) async fn handler() -> Html<&'static str> {
4    Html(include_str!("index.html"))
5}