devicehub-django/user/urls.py

9 lines
151 B
Python
Raw Normal View History

2024-10-10 08:35:27 +00:00
from django.urls import path
from user import views
app_name = 'user'
urlpatterns = [
path("panel/", views.PanelView.as_view(), name="panel"),
]