Interview-Backend/djangotutorial/mysite/selectAppointment.py

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))