kumify/cronhandler/views.py
2020-12-29 17:26:48 +01:00

8 lines
197 B
Python

from django.views.generic import View
from django.http import HttpResponse
from .signals import cron
class CronHandlerView(View):
def get(self, *args, **kwargs):
return HttpResponse()