()
| 27 | |
| 28 | @app.router.get("/") |
| 29 | async def users_list() -> UserPydanticOut: |
| 30 | return ok(await UserPydanticOut.from_queryset(Users.all())) |
| 31 | |
| 32 | |
| 33 | @app.router.post("/") |
nothing calls this directly
no test coverage detected
searching dependent graphs…