6 lines
174 B
Python
6 lines
174 B
Python
"""Celery Worker 入口模块"""
|
|
from app.core.celery_app import celery_app
|
|
from app.tasks import check_tasks # noqa: F401 - 导入以注册任务
|
|
|
|
__all__ = ['celery_app']
|