Spaces:
Running
Running
Upload main.py
Browse files
main.py
CHANGED
@@ -20,3 +20,7 @@ app.include_router(router)
|
|
20 |
@app.get("/health")
|
21 |
def health_check():
|
22 |
return {"status": "ok"}
|
|
|
|
|
|
|
|
|
|
20 |
@app.get("/health")
|
21 |
def health_check():
|
22 |
return {"status": "ok"}
|
23 |
+
|
24 |
+
@app.get("/")
|
25 |
+
def read_root():
|
26 |
+
return {"status": "ok"}
|