2024-02-11 23:53:51 +00:00

10 lines
213 B
Python

# -*- encoding: utf-8 -*-
from django.http import HttpResponse
from django.views.generic import View
class HealthCheck(View):
def get(self, request, *args, **kwargs):
return HttpResponse("healthy")