7 lines
154 B
Python
7 lines
154 B
Python
|
from django.urls import path
|
||
|
|
||
|
from core.views.frontend import IndexView
|
||
|
|
||
|
urlpatterns = []
|
||
|
|
||
|
urlpatterns.append(path('', IndexView.as_view(), name="index"))
|