mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
6 lines
159 B
Python
6 lines
159 B
Python
![]() |
from django.http import HttpResponse, Http404
|
||
|
|
||
|
def newsletter_receive(request):
|
||
|
print request.REQUEST
|
||
|
response = HttpResponse('OK')
|
||
|
return response
|