8 lines
No EOL
197 B
Python
8 lines
No EOL
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() |