Files
crawlab/tasks/celery.py
2019-02-21 14:08:48 +08:00

6 lines
126 B
Python

from celery import Celery
# celery app instance
celery_app = Celery(__name__)
celery_app.config_from_object('config.celery')