📝 Update source examples and docs from Python 3.9 to 3.10

This commit is contained in:
Sebastián Ramírez
2026-02-12 00:28:41 +01:00
parent d06ab3f5c7
commit fbfc1722e5
420 changed files with 3347 additions and 5282 deletions

View File

@@ -0,0 +1,16 @@
from fastapi import FastAPI
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
openapi_url: str = "/openapi.json"
settings = Settings()
app = FastAPI(openapi_url=settings.openapi_url)
@app.get("/")
def root():
return {"message": "Hello World"}