Update server.py

This commit is contained in:
groupuser 2025-04-22 04:26:56 +00:00
parent 7b82950582
commit a973bf29a8

@ -52,6 +52,10 @@ add_routes(
path="/gemeni", path="/gemeni",
) )
@app.get("/")
async def redirect_root_to_docs():
return RedirectResponse("/gemeni/playground")
if __name__ == "__main__": if __name__ == "__main__":
import uvicorn import uvicorn