(
current_user: Annotated[User, Depends(get_current_active_user)],
)
| 89 | |
| 90 | @app.get("/users/me") |
| 91 | async def read_users_me( |
| 92 | current_user: Annotated[User, Depends(get_current_active_user)], |
| 93 | ): |
| 94 | return current_user |
nothing calls this directly
no test coverage detected
searching dependent graphs…