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

6 statements  

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

1from fastapi import FastAPI, Response 1abcdef

2 

3app = FastAPI() 1abcdef

4 

5 

6@app.get("/headers-and-object/") 1abcdef

7def get_headers(response: Response): 1abcdef

8 response.headers["X-Cat-Dog"] = "alone in the world" 1ghijkl

9 return {"message": "Hello World"} 1ghijkl