(credentials: HTTPBasicCredentials = Depends(security))
| 8 | |
| 9 | @app.get("/users/me") |
| 10 | def read_current_user(credentials: HTTPBasicCredentials = Depends(security)): |
| 11 | return {"username": credentials.username, "password": credentials.password} |
nothing calls this directly
no test coverage detected
searching dependent graphs…