x项目初始化

This commit is contained in:
2026-03-05 02:30:08 +08:00
commit 3afbc78c06
3 changed files with 158 additions and 0 deletions

6
backend/main.py Normal file
View File

@@ -0,0 +1,6 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}