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

6 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-12-04 08:29 +0000

1from fastapi import FastAPI 1abcdefg

2from fastapi.responses import PlainTextResponse 1abcdefg

3 

4app = FastAPI() 1abcdefg

5 

6 

7@app.get("/", response_class=PlainTextResponse) 1abcdefg

8async def main(): 1abcdefg

9 return "Hello World" 1hijklmn