11 lines
124 B
Python
11 lines
124 B
Python
from . import tiktok_config
|
|
|
|
import celery
|
|
|
|
c = tiktok_config()
|
|
|
|
celery.Celery(
|
|
__name__,
|
|
broker=c.celery_broker,
|
|
)
|