mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-19 07:54:08 +01:00
9 lines
187 B
Python
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"),
|
|
]
|