
    Z'i[                         d Z  G d de      Zy)z$
Defines the base constance backend
c                       e Zd Zd Zd Zd Zy)Backendc                     t         )zl
        Get the key from the backend store and return the value.
        Return None if not found.
        NotImplementedError)selfkeys     )/opt/sopds/constance/backends/__init__.pygetzBackend.get   
    
 "!    c                     t         )z
        Get the keys from the backend store and return a list of the values.
        Return an empty list if not found.
        r   )r   keyss     r	   mgetzBackend.mget   r   r   c                     t         )zC
        Add the value to the backend store given the key.
        r   )r   r   values      r	   setzBackend.set   s
     "!r   N)__name__
__module____qualname__r
   r   r    r   r	   r   r      s    """r   r   N)__doc__objectr   r   r   r	   <module>r      s   
"f "r   