Files
rust-api/Source/Controllers/Hello.rs
2021-05-12 12:56:11 -03:00

7 lines
102 B
Rust

use actix_web::get;
#[get("/")]
pub async fn Index() -> &'static str {
return "Hello World\n";
}