init 初始化项目

This commit is contained in:
2026-09-05 21:03:45 +08:00
commit a484d42a29
133 changed files with 5111 additions and 0 deletions

6
backend/Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "backend"
version = "0.1.0"
edition = "2024"
[dependencies]

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

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}