expephalon/core/urls/frontend.py
2020-06-04 08:03:35 +02:00

7 lines
No EOL
154 B
Python

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