Files
fastapi/docs_src/first_steps/tutorial001_py39.py
2025-12-17 21:41:43 +01:00

9 lines
117 B
Python

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