# reports/urls.py
from django.urls import path
from .views import dashboard_data

urlpatterns = [
    path("dashboard-data/", dashboard_data),
]