from django.urls import path
from .views import ShopListView

urlpatterns = [
    path('list/', ShopListView.as_view(), name='shop-list'),
]
