marintosti12
fix(ruff) : correction ruff
2a3c0e5
raw
history blame
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}