test / app.py
madankn79's picture
TEST
7421453
from fastapi import FastAPI
app = FastAPI()
@app.get("/health")
def health():
return {"status": "ok"}