9 lines
143 B
Python
9 lines
143 B
Python
from django.urls import path
|
|
|
|
from .views import IndexView
|
|
|
|
app_name = 'db'
|
|
urlpatterns = [
|
|
path("", IndexView.as_view(), name='index'),
|
|
]
|