35379-vm/core/urls.py
Flatlogic Bot 41cddd37ec Version 1
2025-10-31 12:28:32 +00:00

8 lines
109 B
Python

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