(self, key: str, value: Any, expires_in: int | None = None)
| 62 | # for set method, we are follow the same signature used in Authlib |
| 63 | # the expires_in is not used in our case |
| 64 | def set(self, key: str, value: Any, expires_in: int | None = None) -> None: # noqa: ARG002 |
| 65 | self.cache[key] = value |
| 66 | |
| 67 | def get_dict(self) -> dict[str, Any]: |
| 68 | return self.cache |
no outgoing calls