36504-vm/core/urls.py
Flatlogic Bot 8f822e36b6 2.0
2025-11-30 16:45:49 +00:00

6 lines
107 B
Python

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