Files
fastapi/docs_src/first_steps/tutorial003_py310.py
2026-02-12 14:19:43 +01:00

9 lines
111 B
Python

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