36347-vm/core/urls.py
2025-11-27 07:52:19 +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"),
]