(username: str = Depends(get_current_username))
| 30 | |
| 31 | @app.get("/users/me") |
| 32 | def read_current_user(username: str = Depends(get_current_username)): |
| 33 | return {"username": username} |
nothing calls this directly
no test coverage detected
searching dependent graphs…