update
This commit is contained in:
@@ -19,7 +19,7 @@ async def test():
|
|||||||
# 在这里添加你的test函数逻辑
|
# 在这里添加你的test函数逻辑
|
||||||
return {"message": "test function executed"}
|
return {"message": "test function executed"}
|
||||||
|
|
||||||
@app.get("/api/router")
|
@app.all("/api/router")
|
||||||
async def router(path: str = Query(...)):
|
async def router(path: str = Query(...)):
|
||||||
"""路由处理器"""
|
"""路由处理器"""
|
||||||
try:
|
try:
|
||||||
@@ -36,7 +36,7 @@ async def router(path: str = Query(...)):
|
|||||||
except Exception as e:
|
except Exception as e:
|
||||||
return {"success": False, "error": str(e)}
|
return {"success": False, "error": str(e)}
|
||||||
|
|
||||||
@app.get("/")
|
@app.all("/")
|
||||||
async def root():
|
async def root():
|
||||||
"""健康检查端点"""
|
"""健康检查端点"""
|
||||||
return {"message": "FastAPI server is running"}
|
return {"message": "FastAPI server is running"}
|
||||||
|
|||||||
Reference in New Issue
Block a user