mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
5 lines
159 B
Python
Executable file
5 lines
159 B
Python
Executable file
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns('paypal.standard.ipn.views',
|
|
url(r'^$', 'ipn', name="paypal-ipn"),
|
|
)
|