Skip to content

Commit 816770a

Browse files
The Python FastAPI Implementation Files
1 parent f6efafb commit 816770a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/routers/disease_prediction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515

1616
@router.get('/')
1717
def checkdisease():
18-
return { "message": MESSAGE_UNDER_CONSTRUCTION }
18+
return { "status":"pending", "message": MESSAGE_UNDER_CONSTRUCTION }
1919

2020

2121
@router.post('/checkdisease')
2222
def checkdisease():
23-
return { "message": MESSAGE_UNDER_CONSTRUCTION }
23+
return { "status":"pending", "message": MESSAGE_UNDER_CONSTRUCTION }
2424

0 commit comments

Comments
 (0)