13 lines
199 B
Python
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'),
|
|
]
|