35225-vm/core/urls.py
Flatlogic Bot f9a1f1c71e lms1
2025-10-25 14:09:13 +00:00

8 lines
109 B
Python

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