"""应用启动入口。 仅作为 uvicorn 的启动入口,实际应用实例定义在 backend.app.main 模块中。 启动方式: uvicorn backend.main:app --reload """ from backend.app.main import app