8 lines
166 B
Python
8 lines
166 B
Python
|
|
"""
|
||
|
|
Celery 任务模块
|
||
|
|
"""
|
||
|
|
from .celery_app import celery_app
|
||
|
|
from .memoir_tasks import process_memoir_segments
|
||
|
|
|
||
|
|
__all__ = ["celery_app", "process_memoir_segments"]
|