feature/converter #1

Merged
YogeLiu merged 13 commits from feature/converter into main 2026-02-05 13:48:22 +08:00
Showing only changes of commit 27f25d9f4d - Show all commits

View File

@@ -33,14 +33,13 @@ app = FastAPI(
app.include_router(api_router, prefix=settings.api_prefix)
@app.get("/health")
async def health_check():
"""Health check endpoint."""
return {"status": "healthy"}
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8053)
uvicorn.run(app, host="0.0.0.0", port=settings.port)