from celery import shared_task
from user_ads_package.utils import check_and_notify_low_space_users

@shared_task
def send_low_space_email_task():
    check_and_notify_low_space_users()
