celeryd.py 349 B

12345678910111213141516
  1. """
  2. Start the celery daemon from the Django management command.
  3. """
  4. from django.core.management.base import BaseCommand
  5. import celery.models # <-- shows upgrade instructions at exit.
  6. class Command(BaseCommand):
  7. """Run the celery daemon."""
  8. help = 'Run the celery daemon'
  9. def handle(self, *args, **options):
  10. pass