Song commited on
Commit
c527975
·
1 Parent(s): c59d669
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -226,6 +226,10 @@ async def webhook(request: Request):
226
 
227
  return {"status": "ok"}
228
 
 
 
 
 
229
  @app.get("/health")
230
  async def health():
231
  return {"status": "ok"}
 
226
 
227
  return {"status": "ok"}
228
 
229
+ @app.get("/")
230
+ async def root():
231
+ return {"status": "ok", "message": "Jesus Bot is running"}
232
+
233
  @app.get("/health")
234
  async def health():
235
  return {"status": "ok"}