35609-vm/core/urls.py
2025-11-10 04:33:08 +00:00

6 lines
107 B
Python

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