8 lines
162 B
Python
8 lines
162 B
Python
from django.urls import path
|
|
|
|
from backoffice.views import providers
|
|
|
|
urlpatterns = [
|
|
path('', providers.ProviderListView.as_view(), name='provider_list'),
|
|
]
|