Dash-inc commited on
Commit
1308b02
·
verified ·
1 Parent(s): d4da6dc

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +5 -0
main.py CHANGED
@@ -163,3 +163,8 @@ async def upscale_image(image_url: str, background_tasks: BackgroundTasks):
163
  task = executor.submit(process_image)
164
  background_tasks.add_task(task)
165
  return {"status": "Processing"}
 
 
 
 
 
 
163
  task = executor.submit(process_image)
164
  background_tasks.add_task(task)
165
  return {"status": "Processing"}
166
+
167
+
168
+ @app.get("/")
169
+ async def root():
170
+ return {"message": "API is up and running!"}