Update src/api_server.py
Browse files- src/api_server.py +3 -3
src/api_server.py
CHANGED
|
@@ -11,9 +11,9 @@ api.add_middleware(
|
|
| 11 |
allow_headers=["*"],
|
| 12 |
)
|
| 13 |
|
| 14 |
-
@api.get("/")
|
| 15 |
-
def root():
|
| 16 |
-
|
| 17 |
|
| 18 |
@api.get("/chart")
|
| 19 |
def get_chart(view: str = Query("Total Score", description="Chart type")):
|
|
|
|
| 11 |
allow_headers=["*"],
|
| 12 |
)
|
| 13 |
|
| 14 |
+
# @api.get("/")
|
| 15 |
+
# def root():
|
| 16 |
+
# return {"status": "ok"}
|
| 17 |
|
| 18 |
@api.get("/chart")
|
| 19 |
def get_chart(view: str = Query("Total Score", description="Chart type")):
|