15 lines
210 B
Python
15 lines
210 B
Python
from . import tiktok_config
|
|
|
|
import celery
|
|
|
|
c = tiktok_config()
|
|
|
|
CELERY_IMPORTS = c.celery_imports
|
|
|
|
app = celery.Celery(
|
|
__name__,
|
|
broker=c.celery_broker,
|
|
result_backend=c.celery_result_backend,
|
|
)
|
|
|