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