feat(Packagers): added html body components

This commit is contained in:
2024-10-26 16:01:18 -06:00
parent 01c05dfb78
commit ca4d2e5796
6 changed files with 46 additions and 1 deletions

17
postSelectAppointment.py Normal file
View 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