Ken Sang Tang commited on
Commit
4c419f4
·
verified ·
1 Parent(s): 779fb9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -152,5 +152,9 @@ async def task_events(task_id: str):
152
  },
153
  )
154
 
 
 
 
 
155
 
156
 
 
152
  },
153
  )
154
 
155
+ @app.get("/", response_class=HTMLResponse)
156
+ async def root():
157
+ return "<h1>FastAPI server is running</h1>"
158
+
159
 
160