9 lines
171 B
Python
9 lines
171 B
Python
from celery import shared_task
|
|
from apps.product.models import SaleUnit
|
|
|
|
|
|
@shared_task(bind=True)
|
|
def task_func(self):
|
|
print("Task Is Running.....")
|
|
return 'Done'
|