first commit

This commit is contained in:
sam 2025-03-13 18:14:21 +13:00
commit 5692aa6d1d
70 changed files with 13939 additions and 0 deletions

View file

@ -0,0 +1,12 @@
use actix_web::{web, App, HttpServer};
#[actix_web::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.service(web::resource("/").to(|| async { "" }))
})
.bind(("127.0.0.1", 8080))?
.run()
.await
}