38048-vm/core/urls.py
Flatlogic Bot cb3414f60c SIMBI
2026-02-01 01:56:52 +00:00

6 lines
107 B
Python

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