mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
6 lines
158 B
Python
6 lines
158 B
Python
from django.conf.urls import *
|
|
from apps.mobile import views
|
|
|
|
urlpatterns = patterns('apps.mobile.views',
|
|
url(r'^$', views.index, name='mobile-index'),
|
|
)
|