NewsBlur-viq/apps/mobile/urls.py

8 lines
133 B
Python
Raw Normal View History

from django.conf.urls import url
2024-04-24 09:50:42 -04:00
from apps.mobile import views
urlpatterns = [
2024-04-24 09:43:56 -04:00
url(r"^$", views.index, name="mobile-index"),
]