o
    ‹]®fr  ã                   @   s$   d Z ddlmZ G dd„ deƒZdS )a  
    flask_caching.backends.null
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~

    The null cache backend. A caching backend that doesn't cache.

    :copyright: (c) 2018 by Peter Justin.
    :copyright: (c) 2010 by Thadeus Burgess.
    :license: BSD, see LICENSE for more details.
é    )Ú	BaseCachec                   @   s   e Zd ZdZdd„ ZdS )Ú	NullCachezÔA cache that doesn't cache. This can be useful for unit testing.

    :param default_timeout: a dummy parameter that is ignored but exists
                            for API compatibility with other caches.
    c                 C   s   dS )NF© )ÚselfÚkeyr   r   úY/home/ubuntu/webapp/venv/lib/python3.10/site-packages/flask_caching/backends/nullcache.pyÚhas   s   zNullCache.hasN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   r   r   r   r      s    r   N)r   Úflask_caching.backends.baser   r   r   r   r   r   Ú<module>   s    