Change to Actix Web

This commit is contained in:
GuilhermeWerner
2021-05-12 12:56:11 -03:00
parent 5a38931498
commit de74510671
8 changed files with 54 additions and 100 deletions

View File

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