35862-vm/core/urls.py
Flatlogic Bot e39a95b4fc v1
2025-11-20 05:21:31 +00:00

8 lines
109 B
Python

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