12 lines
420 B
Python
12 lines
420 B
Python
from django.urls import path, include
|
|
|
|
app_name = 'mobile'
|
|
|
|
urlpatterns = [
|
|
# path('account/', include('account.urls.web')),
|
|
# path('advertisement/', include('advertisement.urls.web')),
|
|
# path('collection/', include('collection.urls.web')),
|
|
# path('establishments/', include('establishment.urls.web')),
|
|
# path('news/', include('news.urls.web')),
|
|
# path('partner/', include('partner.urls.web')),
|
|
] |