mirror of
https://github.com/guilhermewerner/rust-api
synced 2025-06-15 14:35:15 +00:00
9 lines
136 B
Rust
9 lines
136 B
Rust
#![allow(non_snake_case)]
|
|
|
|
use std::io::Result;
|
|
|
|
#[actix_web::main]
|
|
async fn main() -> Result<()> {
|
|
return Backend::Main().await;
|
|
}
|