mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
5 lines
131 B
Python
5 lines
131 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('apps.opml_import.views',
|
|
(r'^opml_upload$', 'opml_upload'),
|
|
)
|