feat: create FastAPI project

This commit is contained in:
2025-07-21 21:30:07 +00:00
parent 98d7cdd933
commit 141ebbfdbb
2 changed files with 22 additions and 0 deletions

9
main.py Normal file
View File

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