37095-vm/core/urls.py
2025-12-20 22:54:20 +00:00

8 lines
109 B
Python

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