mirror of
https://github.com/UofCBaja/Interview-Backend.git
synced 2025-07-06 03:07:16 -06:00
fix(SchedulePackager): changed comments
This commit is contained in:
@ -5,7 +5,21 @@ with open("./MockDB/schedule.yaml", "r") as scheduleyml:
|
||||
ymlschedule = yaml.safe_load(scheduleyml)
|
||||
|
||||
def getSchedulePackager():
|
||||
res = {"isBase64ENcoded": "false",
|
||||
"""
|
||||
What function does
|
||||
|
||||
``REQUIRES``: None
|
||||
|
||||
``PROMISES``: What function returns if applicable
|
||||
|
||||
``Develop in part by``: Brock T
|
||||
|
||||
``Contact``: darkicewolf50@gmail.ocm
|
||||
|
||||
"""
|
||||
res = {
|
||||
"isBase64ENcoded": "false",
|
||||
"statusCode": 200,
|
||||
"body": ymlschedule}
|
||||
return res
|
||||
"body": ymlschedule
|
||||
}
|
||||
return json.dumps(res)
|
||||
|
Reference in New Issue
Block a user