6 lines
108 B
Python
6 lines
108 B
Python
from django.http import JsonResponse
|
|
|
|
|
|
def health_check(request):
|
|
return JsonResponse({"status": "ok"})
|