mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
6 lines
128 B
Rust
6 lines
128 B
Rust
use actix_web::{get, HttpResponse};
|
|
|
|
#[get("/users")]
|
|
async fn list_users() -> HttpResponse {
|
|
HttpResponse::Ok().finish()
|
|
}
|