8 lines
166 B
Python
8 lines
166 B
Python
from django.urls import path
|
|
|
|
from ..views.admin import FlowchartStatisticsAPI
|
|
|
|
urlpatterns = [
|
|
path("flowchart/statistics", FlowchartStatisticsAPI.as_view()),
|
|
]
|