mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-09 18:53:44 +02:00
8 lines
128 B
Python
8 lines
128 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("insights/sankey/", views.sankey, name="sankey"),
|
|
]
|