mirror of
https://github.com/guilhermewerner/rust-api
synced 2025-06-15 14:35:15 +00:00
7 lines
102 B
Rust
7 lines
102 B
Rust
use actix_web::get;
|
|
|
|
#[get("/")]
|
|
pub async fn Index() -> &'static str {
|
|
return "Hello World\n";
|
|
}
|