Spaces:
Sleeping
Sleeping
Update main.py
Browse files
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!"}
|