12 lines
277 B
Python
12 lines
277 B
Python
from django.urls import path
|
|
|
|
from .views import DashboardView, HomeView, health
|
|
|
|
app_name = "core"
|
|
|
|
urlpatterns = [
|
|
path("", HomeView.as_view(), name="home"),
|
|
path("dashboard/", DashboardView.as_view(), name="dashboard"),
|
|
path("health/", health, name="health"),
|
|
]
|