fix: updated port

This commit is contained in:
Furqan-14
2026-05-27 12:25:00 +05:30
parent b064c2c5dc
commit 3cc8ad17b1
3 changed files with 51 additions and 7 deletions
+10 -1
View File
@@ -30,7 +30,16 @@ def create_app() -> FastAPI:
app.include_router(edits.router)
app.include_router(edits.compat_router)
@app.get("/")
def read_root():
return {
"name": "PDF Engine Gateway",
"version": __version__,
"health": "/health",
"docs": "/docs"
}
return app
app = create_app()
app = create_app()