الملفات
Ghyamah-task-1-cli2/test-projects/fastapi-test/main.py
2026-08-20 21:42:57 +03:00

8 أسطر
119 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def hello():
return {"message": "Hello from FastAPI!"}