mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
7 lines
252 B
Python
7 lines
252 B
Python
from django.conf.urls.defaults import *
|
|
from apps.rss_feeds import views
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^statistics', views.load_feed_statistics, name='statistics'),
|
|
url(r'^exception_retry', views.exception_retry, name='exception-retry'),
|
|
)
|