Files
video2document/app/main.py
Aarthi Manivannan, Premanathan Aarthi Manivannan 0dc2ebe99c App
2025-11-06 15:50:10 +01:00

8 lines
121 B
Python

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