chore: init project

This commit is contained in:
2026-04-03 21:47:27 +03:00
commit 6edf0d07d3
45 changed files with 17947 additions and 0 deletions

9
backend/src/main.rs Normal file
View File

@@ -0,0 +1,9 @@
use axum::{Router, routing::get};
#[tokio::main]
async fn main() {
let app = Router::new().route("/", get(|| async { "Hello Async!\n"}));
let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
axum::serve(listener, app).await.unwrap();
}