mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-18 06:07:53 +00:00
10 lines
232 B
Python
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([])
|