mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
8 lines
No EOL
202 B
Python
8 lines
No EOL
202 B
Python
from django.http import HttpResponse, Http404
|
|
from utils import log as logging
|
|
|
|
|
|
def newsletter_receive(request):
|
|
logging.debug(request.REQUEST)
|
|
response = HttpResponse('OK')
|
|
return response |