Sets the given key and content in the cache. Args: url: string, the key for the cache. content: string, the discovery document.
(self, url, content)
| 37 | |
| 38 | @abc.abstractmethod |
| 39 | def set(self, url, content): |
| 40 | """Sets the given key and content in the cache. |
| 41 | |
| 42 | Args: |
| 43 | url: string, the key for the cache. |
| 44 | content: string, the discovery document. |
| 45 | """ |
| 46 | raise NotImplementedError() |
no outgoing calls
no test coverage detected