6 lines
135 B
Rust
6 lines
135 B
Rust
|
use actix_web::{HttpResponse, Responder};
|
||
|
|
||
|
pub async fn root_index() -> impl Responder {
|
||
|
HttpResponse::Ok().body("Hello world!")
|
||
|
}
|