37009-vm/core/urls.py
Flatlogic Bot e2f5acbc3a Propsync
2025-12-17 03:33:11 +00:00

6 lines
107 B
Python

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