1 2 3 4 5 6 7 8 9
fn health(req: Any) -> Any { return { "status": 200, "headers": {"Content-Type": "text/plain"}, "body": "OK" }; } http_server_get("/health", "health");