11 lines
199 B
Python
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"})
|