z2learn commited on
Commit
d02da21
·
verified ·
1 Parent(s): 4ccd5e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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!"}