mirror of
https://github.com/UofCBaja/Interview-Backend.git
synced 2025-06-15 13:24:19 -06:00
8 lines
204 B
Python
8 lines
204 B
Python
import json
|
|
from django.http import HttpResponse
|
|
from .methods.GetSchedulePackager import getSchedulePackager
|
|
|
|
|
|
def index(request):
|
|
res = getSchedulePackager()
|
|
return HttpResponse(json.dumps(res)) |