10 lines
214 B
Python
10 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")
|