35837-vm/core/urls.py
2025-11-18 19:58:02 +00:00

10 lines
139 B
Python

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