35626-vm/core/urls.py
Flatlogic Bot be8cb04ca8 v2
2025-11-10 17:44:21 +00:00

8 lines
109 B
Python

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