Files
WYGIWYH/app/apps/insights/urls.py
Herculino Trotta dd24fd56d3 insights (wip)
2025-02-15 00:49:00 -03:00

9 lines
187 B
Python

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