mirror of
https://github.com/UofCBaja/BajaCloud.git
synced 2025-06-15 05:04:17 -06:00
25 lines
439 B
Python
25 lines
439 B
Python
import yaml
|
|
import json
|
|
|
|
with open("./MockDB/schedule.yaml", "r") as scheduleyml:
|
|
ymlschedule = yaml.safe_load(scheduleyml)
|
|
|
|
def getSchedulePackager():
|
|
"""
|
|
Formats and allows for the
|
|
|
|
``REQUIRES``: None
|
|
|
|
``PROMISES``: ``JSON`` http response ready
|
|
|
|
``Develop in part by``: Brock T
|
|
|
|
``Contact``: darkicewolf50@gmail.ocm
|
|
|
|
"""
|
|
|
|
return {
|
|
"interviewDates": json.dumps(ymlschedule)
|
|
}
|
|
|