mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-04-25 11:11:27 +08:00
10 lines
273 B
Python
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({})
|