mirror of
https://github.com/UofCBaja/BajaCloud.git
synced 2025-06-15 13:14:17 -06:00
17 lines
353 B
Python
17 lines
353 B
Python
|
|
|
|
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 |