9 lines
171 B
Python
9 lines
171 B
Python
from django.urls import path
|
|
from dashboard.views import DashboardView
|
|
|
|
app_name = 'dashboard'
|
|
|
|
urlpatterns = [
|
|
path("", DashboardView.as_view(), name="dashboard"),
|
|
]
|