printf-sourav's picture
AI completed
276a6a0
Raw
History Blame Contribute Delete
326 Bytes
from __future__ import annotations
from fastapi import FastAPI
import uvicorn
app = FastAPI(title="CI/CD Debugger OpenEnv Server")
@app.get("/health")
def health() -> dict[str, str]:
return {"status": "ok"}
def main() -> None:
uvicorn.run(app, host="0.0.0.0", port=8000)
if __name__ == "__main__":
main()