6 lines
123 B
Python
6 lines
123 B
Python
from django.urls import path
|
|
from . import views as v
|
|
|
|
urlpatterns = [
|
|
path('', v.IndexView.as_view(), name='index'),
|
|
] |