jumpserver/apps/reports/api/report.py
2025-06-09 11:41:47 +08:00

10 lines
232 B
Python

from rest_framework.generics import ListAPIView
from rest_framework.response import Response
__all__ = ['ReportViewSet']
class ReportViewSet(ListAPIView):
def list(self, request, *args, **kwargs):
return Response([])