kumify/cronhandler/views.py

8 lines
197 B
Python
Raw Normal View History

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()