Skip to content

Commit f6efafb

Browse files
The Python FastAPI Implementation Files
1 parent 1eab43c commit f6efafb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/routers/consultations.py

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

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

2020

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

2525

2626
@router.get('/consultation_history')
2727
def consultation_history():
28-
return { "message": MESSAGE_UNDER_CONSTRUCTION }
28+
return { "status":"pending", "message": MESSAGE_UNDER_CONSTRUCTION }
2929

3030

3131
@router.get('/consultation_view')
3232
def consultation_view():
33-
return { "message": MESSAGE_UNDER_CONSTRUCTION }
33+
return { "status":"pending", "message": MESSAGE_UNDER_CONSTRUCTION }
3434

3535

3636
@router.post('/close_consultation')
3737
def close_consultation():
38-
return { "message": MESSAGE_UNDER_CONSTRUCTION }
38+
return { "status":"pending", "message": MESSAGE_UNDER_CONSTRUCTION }
3939

4040

4141
@router.post('/rate_review')
4242
def rate_review():
43-
return { "message": MESSAGE_UNDER_CONSTRUCTION }
43+
return { "status":"pending", "message": MESSAGE_UNDER_CONSTRUCTION }
4444

0 commit comments

Comments
 (0)