9 lines
185 B
Python
9 lines
185 B
Python
from celery import shared_task
|
|
|
|
from .models import User
|
|
|
|
|
|
@shared_task()
|
|
def get_users_count():
|
|
"""A pointless Celery task to demonstrate usage."""
|
|
return User.objects.count()
|