🔧 添加获取 FastAPI 实例的函数,更新配置文件路径以支持新的源文件
Some checks failed
Pytest API Testing / Pytes-API-Testing (push) Failing after 17s

This commit is contained in:
2025-04-29 02:55:38 +08:00
parent 56996ef082
commit efb13340f0
3 changed files with 8 additions and 2 deletions

View File

@@ -3,6 +3,10 @@ from fastapi import FastAPI
app = FastAPI()
def get_app() -> FastAPI:
"""获取 FastAPI 实例"""
return app
@app.get("/")
async def root():
return {"message": "Hello LiteyukiBot"}