from fastapi import FastAPI app = FastAPI(title="AppFactory Monitor") @app.get("/health") def health(): return { "status": "ok" }