mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
7 lines
172 B
Python
7 lines
172 B
Python
![]() |
from django.conf.urls.defaults import *
|
||
|
from apps.api import views
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
url(r'^add_site/(?P<token>\w+)', views.add_site, name='api-add-site'),
|
||
|
)
|