devicehub-django/user/urls.py
2024-10-10 10:35:27 +02:00

9 lines
151 B
Python

from django.urls import path
from user import views
app_name = 'user'
urlpatterns = [
path("panel/", views.PanelView.as_view(), name="panel"),
]