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