37820-vm/core/urls.py
Flatlogic Bot 44ffcf34a8 1
2026-01-26 00:50:09 +00:00

7 lines
108 B
Python

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