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

8
Source/Main.rs Normal file
View File

@ -0,0 +1,8 @@
#![allow(non_snake_case)]
use std::io::Result;
#[actix_web::main]
async fn main() -> Result<()> {
return Backend::Main().await;
}