Update phasenet/app.py
Browse files- phasenet/app.py +4 -0
phasenet/app.py
CHANGED
@@ -339,3 +339,7 @@ def predict(data: Data):
|
|
339 |
@app.get("/healthz")
|
340 |
def healthz():
|
341 |
return {"status": "ok"}
|
|
|
|
|
|
|
|
|
|
339 |
@app.get("/healthz")
|
340 |
def healthz():
|
341 |
return {"status": "ok"}
|
342 |
+
|
343 |
+
@app.get("/")
|
344 |
+
def read_root():
|
345 |
+
return {"Hello": "DeepDenoiser!"}
|