mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
5 lines
133 B
Python
Executable file
5 lines
133 B
Python
Executable file
from django.conf.urls import url
|
|
from paypal.standard.pdt.views import pdt
|
|
urlpatterns = [
|
|
url(r'^$', pdt, name="paypal-pdt"),
|
|
]
|