12 lines
330 B
Python
12 lines
330 B
Python
"""Establishment url patterns."""
|
|
from django.urls import path
|
|
|
|
from establishment import views
|
|
from establishment.urls.common import urlpatterns as common_urlpatterns
|
|
|
|
urlpatterns = [
|
|
path('geo/', views.EstablishmentNearestRetrieveView.as_view(), name='nearest-establishments-list')
|
|
]
|
|
|
|
urlpatterns.extend(common_urlpatterns)
|