mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-04-26 11:41:07 +08:00
10 lines
278 B
Python
10 lines
278 B
Python
from rest_framework import mixins
|
||
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({"name": ":"})
|