Commit
·
833d26b
1
Parent(s):
edace80
Fix
Browse files
app.py
CHANGED
@@ -21,9 +21,9 @@ app = FastAPI()
|
|
21 |
# supports_credentials=True
|
22 |
# )
|
23 |
|
24 |
-
@app.get("/")
|
25 |
def read_root():
|
26 |
-
return {"
|
27 |
|
28 |
|
29 |
# @app.route('/api/process', methods=['POST'])
|
|
|
21 |
# supports_credentials=True
|
22 |
# )
|
23 |
|
24 |
+
@app.get("/api/health_check")
|
25 |
def read_root():
|
26 |
+
return {"status": "ok"}
|
27 |
|
28 |
|
29 |
# @app.route('/api/process', methods=['POST'])
|