mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
7 lines
175 B
Python
7 lines
175 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'),
|
||
|
)
|