Files
RasadDam_Backend/apps/authentication/tasks.py

9 lines
171 B
Python
Raw Normal View History

2025-07-19 10:41:03 +03:30
from celery import shared_task
from apps.product.models import SaleUnit
@shared_task(bind=True)
def task_func(self):
print("Task Is Running.....")
2025-07-19 10:41:03 +03:30
return 'Done'