fix:小组件- PUSH

This commit is contained in:
吕新雨
2026-02-03 17:43:58 +08:00
parent d742b398ef
commit c1c2c6197d
66 changed files with 4888 additions and 479 deletions

View File

@@ -2,3 +2,12 @@
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