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