meow-api 0.20.1

REST API server (Axum) for the meow-rs proxy kernel.
Documentation
1
2
3
4
5
6
7
use axum::response::Html;

const UI_HTML: &str = include_str!("../static/index.html");

pub async fn serve_ui() -> Html<&'static str> {
    Html(UI_HTML)
}