Files
music-tag-web/applications/task/views.py
2022-07-07 11:45:48 +08:00

10 lines
273 B
Python

from rest_framework import mixins, status
from rest_framework.response import Response
from component.drf.viewsets import GenericViewSet
class TaskViewSets(mixins.ListModelMixin, GenericViewSet):
def list(self, request, *args, **kwargs):
return Response({})