mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-18 20:15:14 +02:00
6 lines
145 B
Rust
6 lines
145 B
Rust
use actix_web::{HttpResponse, web};
|
|||
|
|||
async fn render_widget(payload: web::Json<String>) -> HttpResponse {
|
|||
HttpResponse::Ok().body(payload)
|
|||
}
|