(self, key: str)
| 57 | self.cache: dict[str, Any] = {} |
| 58 | |
| 59 | def get(self, key: str) -> Any: |
| 60 | return self.cache.get(key) |
| 61 | |
| 62 | # for set method, we are follow the same signature used in Authlib |
| 63 | # the expires_in is not used in our case |
no outgoing calls