expephalon/core/urls/frontend.py

7 lines
154 B
Python
Raw Normal View History

from django.urls import path
from core.views.frontend import IndexView
urlpatterns = []
urlpatterns.append(path('', IndexView.as_view(), name="index"))