()
| 27 | |
| 28 | @app.get("/items/", response_model=list[Item]) |
| 29 | async def get_items(): |
| 30 | items = await Item.objects.select_related("category").all() |
| 31 | return items |
| 32 | |
| 33 | |
| 34 | @app.post("/items/", response_model=Item) |
nothing calls this directly
no test coverage detected