HH/apps/dashboard/urls.py
2025-12-24 12:42:31 +03:00

13 lines
199 B
Python

"""
Dashboard URLs
"""
from django.urls import path
from .views import CommandCenterView
app_name = 'dashboard'
urlpatterns = [
path('', CommandCenterView.as_view(), name='command-center'),
]