Coverage for docs_src / custom_response / tutorial006_py310.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-02-12 18:15 +0000

1from fastapi import FastAPI 1abcd

2from fastapi.responses import RedirectResponse 1abcd

3 

4app = FastAPI() 1abcd

5 

6 

7@app.get("/typer") 1abcd

8async def redirect_typer(): 1abcd

9 return RedirectResponse("https://typer.tiangolo.com") 1efg