Files
webpanel/app/db/urls.py
2024-06-04 22:08:15 +02:00

9 lines
143 B
Python

from django.urls import path
from .views import IndexView
app_name = 'db'
urlpatterns = [
path("", IndexView.as_view(), name='index'),
]