kumify/frontend/urls.py
2020-12-27 18:49:54 +01:00

10 lines
171 B
Python

from .views import DashboardView
from django.urls import path, include
app_name = "frontend"
urlpatterns = [
path('', DashboardView.as_view(), name="dashboard"),
]