nyx/tests/dynamic_fixtures/surface/rust_actix/main.rs

7 lines
128 B
Rust
Raw Permalink Normal View History

2026-06-05 10:16:30 -05:00
use actix_web::{get, HttpResponse};
#[get("/users")]
async fn list_users() -> HttpResponse {
HttpResponse::Ok().finish()
}