mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
6 lines
119 B
Python
6 lines
119 B
Python
from celery import Celery
|
|
|
|
# celery app instance
|
|
celery_app = Celery(__name__)
|
|
celery_app.config_from_object('config')
|