36449-vm/core/urls.py
Flatlogic Bot f1c5cc6862 version1
2025-11-28 22:13:49 +00:00

8 lines
109 B
Python

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