from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def root():
    return {"status": "ok", "message": "FastAPI corriendo en cPanel"}


@app.get("/health")
def health():
    return {"status": "healthy"}
