mirror of
https://github.com/UofCBaja/Interview-Backend.git
synced 2025-07-07 03:37:14 -06:00
feat(Packagers): added html body components
This commit is contained in:
17
postSelectAppointment.py
Normal file
17
postSelectAppointment.py
Normal file
@ -0,0 +1,17 @@
|
||||
|
||||
|
||||
def SelectAppointment (appointmentTime):
|
||||
status = mockWriteFunction(appointmentTime)
|
||||
res = {"isBase64ENcoded": "false",
|
||||
"statusCode": 200,
|
||||
"body": ""}
|
||||
if status:
|
||||
res["body"] = {"Success": True}
|
||||
else:
|
||||
res["body"] = {"Success": False}
|
||||
return res
|
||||
|
||||
|
||||
|
||||
def mockWriteFunction(appTime):
|
||||
return 0
|
Reference in New Issue
Block a user