7 lines
140 B
Python
7 lines
140 B
Python
from django.http import JsonResponse
|
|
|
|
|
|
def health_check(request):
|
|
return JsonResponse({"status": "ok", "service": "airshelf-backend"})
|
|
|