mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
10 lines
185 B
Python
10 lines
185 B
Python
from django.urls import path
|
|
|
|
from .views import DashboardOverviewView
|
|
|
|
|
|
urlpatterns = [
|
|
path("dashboard/overview/", DashboardOverviewView.as_view(), name="dashboard-overview"),
|
|
]
|
|
|