Files
mnote/wolai-backend/app/__init__.py
T

6 lines
231 B
Python
Raw Normal View History

2025-11-23 10:55:04 +08:00
"""FastAPI 应用初始化模块。"""
2025-12-06 16:47:17 +08:00
# 导入 Celery 应用以确保 FastAPI 进程也加载 task_always_eager 配置。
# pylint: disable=unused-import
from app.workers.celery_app import celery_app as _celery_app # noqa: F401