Ë
    …–=hm  ã                   ó&   — d Z ddlZ G d„ de«      Zy)z5An abstract class for caching the discovery document.é    Nc                   óp   — e Zd ZdZej
                  Zej                  d„ «       Zej                  d„ «       Z	y)ÚCachezA base abstract cache class.c                 ó   — t        «       ‚)zúGets the content from the memcache with a given key.

        Args:
          url: string, the key for the cache.

        Returns:
          object, the value in the cache for the given key, or None if the key is
          not in the cache.
        ©ÚNotImplementedError)ÚselfÚurls     úe/var/www/html/profi_bot/bot/venv/lib/python3.12/site-packages/googleapiclient/discovery_cache/base.pyÚgetz	Cache.get   s   € ô "Ó#Ð#ó    c                 ó   — t        «       ‚)z¥Sets the given key and content in the cache.

        Args:
          url: string, the key for the cache.
          content: string, the discovery document.
        r   )r   r	   Úcontents      r
   Úsetz	Cache.set&   s   € ô "Ó#Ð#r   N)
Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚabcÚABCMetaÚ__metaclass__Úabstractmethodr   r   © r   r
   r   r      s@   „ Ù&à—K‘K€Mà×Ññ
$ó ð
$ð 	×Ññ$ó ñ$r   r   )r   r   Úobjectr   r   r   r
   Ú<module>r      s   ðñ <ã 
ô$ˆFõ $r   