36506-vm/core/urls.py
Flatlogic Bot e863dc970a V1
2025-11-30 16:52:35 +00:00

8 lines
109 B
Python

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