35777-vm/core/urls.py
2025-11-16 18:04:45 +00:00

6 lines
125 B
Python

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