from fastapi import FastAPI app = FastAPI() @app.get("/") def health_check(): return {"status": "FastAPI is alive!"}