Coverage for docs_src/body_nested_models/tutorial009_py39.py: 100%
5 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-08-08 03:53 +0000
1from fastapi import FastAPI 1abcd
3app = FastAPI() 1abcd
6@app.post("/index-weights/") 1abcd
7async def create_index_weights(weights: dict[int, float]): 1abcd
8 return weights 1abcd