mirror of
https://github.com/UofCBaja/Interview-Backend.git
synced 2025-06-15 13:24:19 -06:00
11 lines
284 B
Python
11 lines
284 B
Python
import json
|
|
from django.http import HttpResponse
|
|
|
|
def index(request):
|
|
ymlschedule = {"message": False}
|
|
res = {
|
|
"statusCode": 200,
|
|
"isBase64ENcoded": "false",
|
|
"body": json.dumps(ymlschedule)
|
|
}
|
|
return HttpResponse(json.dumps(res)) |