Coverage for docs_src/configure_swagger_ui/tutorial002.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-05-05 00:03 +0000

1from fastapi import FastAPI 1abcdef

2 

3app = FastAPI(swagger_ui_parameters={"syntaxHighlight": {"theme": "obsidian"}}) 1abcdef

4 

5 

6@app.get("/users/{username}") 1abcdef

7async def read_user(username: str): 1abcdef

8 return {"message": f"Hello {username}"} 1ghijkl