(self, token: str, auth_scheme: str)
| 63 | supported_auth_schemes = ("bearer",) |
| 64 | |
| 65 | def auth_headers(self, token: str, auth_scheme: str) -> dict[str, str]: |
| 66 | return {"Authorization": f"Bearer {token}"} |
| 67 | |
| 68 | |
| 69 | # --------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected