Coverage for docs_src / async_tests / app_a_py310 / main.py: 100%

5 statements  

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

1from fastapi import FastAPI 1abcd

2 

3app = FastAPI() 1abcd

4 

5 

6@app.get("/") 1abcd

7async def root(): 1abcd

8 return {"message": "Tomato"} 1efghij