kumify/api/views.py

6 lines
189 B
Python
Raw Normal View History

from django.views.generic import View
from django.http import JsonResponse
class StatusView(View):
def get(self, request):
return JsonResponse({"status": "OK", "messages": []})