Files
hoopscout/apps/core/views.py

11 lines
199 B
Python

from django.http import JsonResponse
from django.shortcuts import render
def home(request):
return render(request, "home.html")
def health(request):
return JsonResponse({"status": "ok"})