urls.py 149 Bytes
Newer Older
1 2 3 4 5 6 7 8
"""
URLs for the rss_proxy djangoapp.
"""
from django.conf.urls import url

urlpatterns = [
    url(r"^$", "rss_proxy.views.proxy", name="proxy"),
]