Initial commit

This commit is contained in:
Ke Sun
2025-11-30 18:22:17 +08:00
commit aea2fe391e
449 changed files with 83030 additions and 0 deletions

10
app/celery_worker.py Normal file
View File

@@ -0,0 +1,10 @@
"""
Celery Worker 入口点
用于启动 Celery Worker: celery -A app.celery_worker worker --loglevel=info
"""
from app.celery_app import celery_app
# 导入任务模块以注册任务
import app.tasks
__all__ = ['celery_app']