mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
6 lines
167 B
Python
6 lines
167 B
Python
from django.conf.urls import *
|
|
from apps.newsletters import views
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^/?$', views.newsletter_receive, name='newsletter-receive'),
|
|
)
|