11 lines
157 B
Python
11 lines
157 B
Python
from django.urls import path
|
|
|
|
from core.views import IndexView
|
|
|
|
|
|
app_name = "index"
|
|
|
|
urlpatterns = [
|
|
path("", IndexView.as_view(), name="main_index"),
|
|
]
|