o
    ˷e                     @   s0   d Z ddlmZ ddlmZ G dd deZdS )zy
The Google Analytics API Endpoint

Documentation: http://developer.mailchimp.com/documentation/mailchimp/reference/ping
    )unicode_literals)BaseApic                       s(   e Zd ZdZ fddZdd Z  ZS )Pingz8
    A health check endpoint for MailChimp API 3.0.
    c                    s    t t| j|i | d| _dS )z)
        Initialize the endpoint
        pingN)superr   __init__endpoint)selfargskwargs	__class__ O/var/www/ideatree/venv/lib/python3.10/site-packages/mailchimp3/entities/ping.pyr      s   
zPing.__init__c                 C   s   | j j|  dS )ub   
        A health check for the API that won’t return any account-specific information.
        )url)
_mc_client_get_build_path)r	   r   r   r   get   s   zPing.get)__name__
__module____qualname____doc__r   r   __classcell__r   r   r   r   r      s    r   N)r   
__future__r   mailchimp3.baseapir   r   r   r   r   r   <module>   s   