(credentials: HTTPAuthorizationCredentials = Security(security))
| 10 | |
| 11 | @app.get("/users/me") |
| 12 | def read_current_user(credentials: HTTPAuthorizationCredentials = Security(security)): |
| 13 | return {"scheme": credentials.scheme, "credentials": credentials.credentials} |
| 14 | |
| 15 | |
| 16 | client = TestClient(app) |
nothing calls this directly
no test coverage detected
searching dependent graphs…