Files
WYGIWYH/app/apps/insights/urls.py
2025-02-15 00:48:59 -03:00

8 lines
128 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("insights/sankey/", views.sankey, name="sankey"),
]