10 lines
167 B
Python
10 lines
167 B
Python
from django.urls import path
|
|
|
|
from .views import ProvidersHomeView
|
|
|
|
app_name = "providers"
|
|
|
|
urlpatterns = [
|
|
path("", ProvidersHomeView.as_view(), name="index"),
|
|
]
|