import logging
from flask import current_app
from buyercall.app import create_celery_app
log = logging.getLogger(__name__)
celery = create_celery_app(current_app)
@celery.task(soft_time_limit=300)
def appointment_task(**kwargs):
"""
Default placeholder task for appointments. Utilize this placeholder function as
first appointment task.
:return: True
"""
return True