7 lines
202 B
Python
7 lines
202 B
Python
"""
|
|
Celery entry point. Re-exports celery_app from tasks so the worker
|
|
can be started with: celery -A app.workers.celery_app worker
|
|
"""
|
|
from app.workers.tasks import celery_app
|
|
|
|
__all__ = ["celery_app"] |