mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
6 lines
132 B
Python
6 lines
132 B
Python
from django.conf.urls import url
|
|
from apps.mobile import views
|
|
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name='mobile-index'),
|
|
]
|