36604-vm/core/urls.py
2025-12-03 04:06:43 +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"),
]