wiki-eleves/WikiENS/views.py
2021-03-18 01:55:49 +01:00

9 lines
214 B
Python

from django.http import HttpResponse
from django.views import View
class HealthCheck(View):
http_method_names = ["get", "head"]
def get(self, request, *args, **kwargs):
return HttpResponse("OK")