Files
mindfulness/server/app/tasks/__init__.py
2026-02-03 17:43:58 +08:00

14 lines
441 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
Celery 任务集合。
"""
# 重要:
# - 本项目的任务按文件拆分在 app/tasks/*.py 中
# - Celery autodiscover 通常只会导入 app.tasks即本包不会自动递归导入子模块
# - 因此这里需要显式导入各任务模块,确保 shared_task 被注册
from app.tasks import ping as _ping # noqa: F401
from app.tasks import reco as _reco # noqa: F401
from app.tasks import push as _push # noqa: F401