fastapi/docs_src/configure_swagger_ui/tutorial002.py

9 lines
216 B
Python

from fastapi import FastAPI
app = FastAPI(swagger_ui_parameters={"syntaxHighlight.theme": "obsidian"})
@app.get("/users/{username}")
async def read_user(username: str):
return {"message": f"Hello {username}"}