This commit is contained in:
2026-06-03 07:19:57 -06:00
parent 809673e64f
commit 0764946c17
6 changed files with 178 additions and 0 deletions

7
flowchart/urls/admin.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from ..views.admin import FlowchartStatisticsAPI
urlpatterns = [
path("flowchart/statistics", FlowchartStatisticsAPI.as_view()),
]