mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
7 lines
133 B
Python
7 lines
133 B
Python
from django.conf.urls import url
|
|
|
|
from apps.mobile import views
|
|
|
|
urlpatterns = [
|
|
url(r"^$", views.index, name="mobile-index"),
|
|
]
|