from django.urls import path
from apps.core.views import *

app_name = "core"

urlpatterns = [
    path("", DashboardView.as_view(), name="dashboard"), 
    path("theme_mode", theme_mode, name="theme_mode"),
]
