Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -131,4 +131,8 @@ async def convert_srt(
|
|
| 131 |
@app.get("/health")
|
| 132 |
def health_check():
|
| 133 |
return {"status": "healthy"}
|
| 134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
@app.get("/health")
|
| 132 |
def health_check():
|
| 133 |
return {"status": "healthy"}
|
| 134 |
+
|
| 135 |
+
# Optionally, if you want a second endpoint, use a different path:
|
| 136 |
+
# @app.get("/home")
|
| 137 |
+
# def home():
|
| 138 |
+
# return {"message": "running!"}
|