6 lines
231 B
Python
6 lines
231 B
Python
"""FastAPI 应用初始化模块。"""
|
|
|
|
# 导入 Celery 应用以确保 FastAPI 进程也加载 task_always_eager 配置。
|
|
# pylint: disable=unused-import
|
|
from app.workers.celery_app import celery_app as _celery_app # noqa: F401
|