mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-16 13:17:39 +00:00
10 lines
166 B
Python
10 lines
166 B
Python
from django.urls import path
|
|
|
|
from reports import api
|
|
|
|
app_name = 'reports'
|
|
|
|
urlpatterns = [
|
|
path('reports/', api.ReportViewSet.as_view(), name='report-list'),
|
|
]
|