9 lines
184 B
Python
9 lines
184 B
Python
|
from app_db import connect_celery_with_app, app, connect_db_with_app
|
||
|
|
||
|
connect_db_with_app(False)
|
||
|
connect_celery_with_app()
|
||
|
|
||
|
celery_app = app.extensions["celery"]
|
||
|
|
||
|
import jobs.test_job
|