36890-vm/core/urls.py
Flatlogic Bot 2c5b417266 Arul
2025-12-12 12:28:22 +00:00

8 lines
126 B
Python

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