Files
H3ConuMS-v2/backend/celery_worker.py
T
2026-04-02 23:40:04 +08:00

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']