mirror of
https://github.com/UofCBaja/Interview-Backend.git
synced 2025-07-06 03:07:16 -06:00
feat(Packagers): added html body components
This commit is contained in:
11
GetSchedulePackager.py
Normal file
11
GetSchedulePackager.py
Normal file
@ -0,0 +1,11 @@
|
||||
import yaml
|
||||
import json
|
||||
|
||||
with open("./MockDB/schedule.yaml", "r") as scheduleyml:
|
||||
ymlschedule = yaml.safe_load(scheduleyml)
|
||||
|
||||
def getSchedulePackager():
|
||||
res = {"isBase64ENcoded": "false",
|
||||
"statusCode": 200,
|
||||
"body": ymlschedule}
|
||||
return res
|
Reference in New Issue
Block a user